Menu
×
×
Correct!
Exercise:Complete the SQL statement to include a text field called "color" with maximum 10 characters.
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255),
year INT,
@(17)
);
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255),
year INT,
color VARCHAR(10)
);
Not CorrectClick here to try again. Correct!Next ❯ |