Please guys help me on the last SQL codes for Zoo | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please guys help me on the last SQL codes for Zoo

15th Jul 2022, 8:51 PM
Farai Tambo
5 Answers
0
Please write the Code you already wrote.
15th Jul 2022, 9:12 PM
Felix Alcor
Felix Alcor - avatar
+ 4
/* name - "Slim", type - "Giraffe", country_id - 1 */ INSERT INTO Animals VALUES ('Slim','Giraffe',1); SELECT Animals.name, Animals.type, Countries.country FROM Animals, Countries WHERE Animals.country_id = Countries.id ORDER BY country;
15th Jul 2022, 10:06 PM
Rik Wittkopp
Rik Wittkopp - avatar
+ 4
Farai Tambo I suggest you do the course again to make sure you understand the concepts. I wrote the requirements down on a piece of paper to make sure I understood
15th Jul 2022, 10:08 PM
Rik Wittkopp
Rik Wittkopp - avatar
+ 1
Please add SQL to your post tags https://code.sololearn.com/W3uiji9X28C1/?ref=app
15th Jul 2022, 11:42 PM
Ipang
0
INSERT INTO Animals Values ("Slim,"Giraffe," "35") CREATE TABLE List of all animals ( name char, type char, country-id int, id int , country char);
15th Jul 2022, 9:28 PM
Farai Tambo