- 1
Zoo Project!
I have been working on this project and I fail to get it right. Can I get some help please? 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.country ORDER BY Countries.country;
9 Antworten
+ 4
Abit Jurkuch Not sure but I think this challenge have problems right now as I also tried to run my old correct solution and it just showed "No output".
+ 2
Abit Jurkuch
Problem is with SQL Compiler. My solved problems are also not working.
+ 1
Abit Jurkuch
There should be ORDER BY country_id DESC
+ 1
INSERT INTO Animals (name, type, country_id)
VALUES ('Slim', 'Giraffe', 1);
SELECT animals.name, animals.type, countries.country FROM animals, countries
WHERE animals.country_id=countries.id order by animals.country_id desc
+ 1
Copy this code and like and check please thank you
0
still that doesn't work
0
thanks!
0
what about Apartments problem
0
Me too I have the same problem!