Menu
×
×
Correct!
Exercise:Write the correct SQL statement to create a new table called "cars".
@(17) (
brand VARCHAR(255),
model VARCHAR(255)
);
CREATE TABLE cars (
brand VARCHAR(255),
model VARCHAR(255)
);
Not CorrectClick here to try again. Correct!Next ❯ |