+ 5
Need help with the code project "zoo"
I used the below query for that project and my output looks the exact same as the expected output. But still it's not accepting my answer, what do I do? insert into Animals values('Slim','Giraffee',1); select name, type, country from Animals inner join Countries on Animals.country_id=Countries.id order by Countries.country;
7 Respuestas
+ 4
Rishi,
I have forgotten this, but check for 'Giraffe' (with single letter 'e') over 'Giraffee'
+ 5
Ipang thank you very much!
+ 4
Liza Belova thanks! I see i just typed an extra 'e' in "Giraffe" :)
+ 2
insert into Animals values ('Slim', 'Giraffe', 1);
select name, type, country from Animals inner join Countries on Animals.country_id = Countries.id order by country
+ 2
Rusell Calero thanks, very helpful👍
+ 2
Rishi the most common mistake. This happens to me too😊
+ 1
russell calero