0
1) A new animal has come in, with the following details: name - "Slim", type - "Giraffe", country_id -
4 odpowiedzi
+ 1
Are you having trouble with this Code Coach task? Please show your attempt so we can help you troubleshoot the problem.
+ 1
What is the question?
0
insert into Animals (name, type, country_id )
values ('Slim', 'Giraffe', 1);
SELECT Animals.name, Animals.type, countries.country from Animals
inner join countries on Animals.country_id=countries.id
order by countries.country
0
Shayan Ahmad Khan ..
The syntax is absolutely right 👍