Assignment 3: Advanced SQL Queries

Hi! Shouldn’t this be

SELECT
    column1,
    SUBSTRING(column1, 1, 4) AS part_column1
--                       -^-                --
FROM
    table_name;

since the output is 4 characters long?

1 Like

Indeed. Thank you for spotting this!

1 Like