0 votes
Hello,

For task 1e, the format example shows the CREATE TABLE statement without spaces inside parentheses: CREATE TABLE students(ID INT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL)

However, the actual output from the database includes spaces, so it would look more like: CREATE TABLE students( ID INT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL ).

Should we remove these spaces to match the format example or submit the definition exactly as retrieved from the database?

Thanks!
in ex07 by
edit history

1 Answer

0 votes
You should take the result exactly as retrieved from the database. Thank you for reporting the incorrect format example.
by (860 points)
edit history