Menu
×
×
Correct!
Exercise:Write the correct SQL statement to insert 3 new records into the cars table.
INSERT INTO cars (brand, model, year)
VALUES
('Volvo', 'p1800', 1968),
('BMW', 'M1', 1978),
('Toyota', 'Celica', 1975);
Not CorrectClick here to try again. Correct!Next ❯INSERT INTO cars (brand, model, year) VALUES'Volvo', 'p1800', 1968 'BMW', 'M1', 1978 'Toyota', 'Celica', 1975 |