0
SQL more care practice problem
Help canât figure this one out Iâve tried a bunch of ways. SELECT * FROM garage INSERT INTO garage VALUES (6, 'Mercedes-Benz', 'G 63', 2020), (7,'Porsche','Panamera', 2020);
3 Answers
+ 3
INSERT INTO Garage 
VALUES (6, 'Mercedes-Benz', 'G 63', 2020),
       (7, 'Porsche', 'Panamera', 2020);
SELECT *
FROM Garage;
+ 1
Thank you. That was killing me all day
+ 1
lol 
You already finished the code all you need is to fix the order of the code.



