+ 1
INSERT INTO Animals VALUES ('Slim', 'Giraffe', 1); SELECT Animals.name, Animals.type, Animals.country_id INNER JOIN help pls
SQL
3 ответов
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👍
+ 2
Select name,type, country from animals inner join countries on animals.country_id=countries.id
0
You can share the query which you are writing for the problem .