+ 1
Zoo SQL module quiz
My code in SQL is correct. I'm getting similar output but it still shows your code is wrong. Can someone help me? It's important.
2 Antworten
+ 3
INSERT INTO Animals(name,type,country_id)
VALUES ('Slim', 'Giraffe', 1 );
SELECT animals.name, animals.type, countries.country
From Animals INNER JOIN Countries
ON country_id = id order by country_id desc;
+ 2
share your code snippet so that we can correct you..