MySQL | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

MySQL

I’m working on the last project in the MySQL and my code’s output is exactly what the system says the output should be but they keep asking me to try it again. How come ?

26th Jul 2022, 2:16 PM
Elvis Mensah Peprah
Elvis Mensah Peprah - avatar
5 Answers
+ 1
Share script here
26th Jul 2022, 2:25 PM
A͢J
A͢J - avatar
+ 1
elvis peprah Check spelling of 'Giraff' and 'slim'
26th Jul 2022, 2:28 PM
A͢J
A͢J - avatar
+ 1
Thank you very much
26th Jul 2022, 2:31 PM
Elvis Mensah Peprah
Elvis Mensah Peprah - avatar
0
/* name - "Slim", type - "Giraffe", country_id - 1 */ INSERT INTO Animals (name,type,country_id) VALUES ('slim','Giraff','1'); SELECT Animals.name,Animals.type,Countries.country FROM Animals INNER JOIN Countries ON Animals.country_id = Countries.id ORDER BY Animals.country_id DESC;
26th Jul 2022, 2:26 PM
Elvis Mensah Peprah
Elvis Mensah Peprah - avatar
0
Oh ok thank you It was exactly that and the “slim” had to be calitalizes as well
26th Jul 2022, 2:31 PM
Elvis Mensah Peprah
Elvis Mensah Peprah - avatar