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 odpowiedzi
+ 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.