Menu
×
×
Correct!
Exercise:Complete the SQL statement to include a integer field called "year".
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255),
@(13)
);
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255),
year INT
);
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255),
year INTEGER
);
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255),
year SMALLINT
);
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255),
year BIGINT
);
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 41 exercises.
Are you sure you want to continue?