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