Write the correct SQL statement to insert 3 new records into the cars table.
INSERT INTO cars (brand, model, year)
VALUES
@(1)'Volvo', 'p1800', 1968@(2)
@(1)'BMW', 'M1', 1978@(2)
@(1)'Toyota', 'Celica', 1975@(2)
INSERT INTO cars (brand, model, year)
VALUES
('Volvo', 'p1800', 1968),
('BMW', 'M1', 1978),
('Toyota', 'Celica', 1975);