0
Please help
INSERT INTO Animals VALUES ("Slim","Giraffe",1) SELECT name ,type,country FROM animals INNER JOIN countries ON animals.country_id = country .id ORDER BY country
2 Answers
+ 9
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
Simba Thank you