Why isn't this working, SQL Zoo | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why isn't this working, SQL Zoo

Trying to understand why this didn't work, I'm pretty positive it's correct but it doesn't give me an output and says to try again. What am I missing? This is the final challenge on the sql track btw. INSERT into Animals VALUES ('Slim', 'Giraffe', 1); Select Animals.name, Animals.type, Countries.country From Animals inner join Countries on Animals.country_id = Countries.id Order by Countries.country;

14th Feb 2021, 5:08 AM
Elan
2 Answers
+ 1
It could be some bug. It is happening with many PEOPLE. JUST Wait till SoloLearn Fixes It.
14th Feb 2021, 5:21 AM
Ezra Bridger 2207 [INACTIVE]
Ezra Bridger 2207 [INACTIVE] - avatar
0
Try this out. INSERT INTO animals (name, type, country_id) VALUES ('Slim', 'Giraffe', 1); SELECT animals.name, animals.type, countries.country FROM animals INNER JOIN countries ON animals.country_id = countries.id ORDER BY Countries.country ASC;
19th Feb 2021, 4:35 AM
Billy Korahan
Billy Korahan - avatar