Problem with zoo project in sql
Hello! I have a technical problem and can't to solve this task (SQL Zoo project): https://www.sololearn.com/learning/eom-project/1060/1059 I've tried these: 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; 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 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; insert into Animals values ('Slim', 'Giraffe', 1); select name, type, country from Animals join Countries on Animals.country_id = Countries.id order by country; And all of them don't work with the mistake: test case 1, no output