0
Please guys help me on the last SQL codes for Zoo
5 ответов
0
Please write the Code you already wrote.
+ 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;
+ 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
+ 1
Please add SQL to your post tags
https://code.sololearn.com/W3uiji9X28C1/?ref=app
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);