0
Help me with this SQL project code.
I'm trying to finalize on this SQL project. Supposed to output a list is animals, type and country, ordered by county but I do not understand why I've gone wrong. INSERT INTO Animals VALUES ('slim', 'Giraffe', 1); SELECT name, type, country FROM Animals INNER JOIN Countries ON Animals.country_id = Countries.id ORDER BY Country;
1 Answer
0
Try 'Slim' instead of 'slim'.