INSERT INTO Animals VALUES ('Slim', 'Giraffe', 1); SELECT Animals.name, Animals.type, Animals.country_id INNER JOIN help pls | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

INSERT INTO Animals VALUES ('Slim', 'Giraffe', 1); SELECT Animals.name, Animals.type, Animals.country_id INNER JOIN help pls

SQL

27th Feb 2021, 1:47 AM
Dawodu Felix
Dawodu Felix - avatar
3 Answers
0
insert into Animals values ('Slim','Giraffe',1); select name,type,country from Animals inner join Countries on id=country_id order by country success👍
13th Mar 2021, 1:35 PM
Melike Zenler
+ 2
Select name,type, country from animals inner join countries on animals.country_id=countries.id
1st Nov 2021, 11:13 AM
Saleem Nadaf
Saleem Nadaf - avatar
0
You can share the query which you are writing for the problem .
27th Feb 2021, 1:53 AM
Hima
Hima - avatar