Menu
×
×
Correct!
Exercise:Write the correct SQL statement to insert new records into the cars table.
@(11) cars (brand, model, year)
@(6) ('Ford', 'Mustang', 1964);
INSERT INTO cars (brand, model, year)
VALUES ('Ford', 'Mustang', 1964);
Not CorrectClick here to try again. Correct!Next ❯ |