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;
2 Respostas
+ 1
It could be some bug.
It is happening with many PEOPLE.
JUST Wait till SoloLearn Fixes It.
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;