Is the SQL zoo challenge broken? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is the SQL zoo challenge broken?

I did the code using inner join like the challenge wants. It did show the output same as mine. But it won't finish the challenge.

24th Mar 2021, 2:52 PM
Marvin Gajelomo
Marvin Gajelomo - avatar
7 Answers
+ 4
It's 'Giraffe' G should be uppercase in Giraffe You can add `[solved]` tag in your question like this https://www.sololearn.com/Discuss/2600772/?ref=app So, community will understand that your problem is solved :)
24th Mar 2021, 2:59 PM
Simba
Simba - avatar
+ 1
share your code to be helped ^^ no code == no help
24th Mar 2021, 2:55 PM
visph
visph - avatar
+ 1
to answer your question title: no there isn't any (at least 'free', I guess 'pro' too) code coaches broken ;)
24th Mar 2021, 2:57 PM
visph
visph - avatar
+ 1
Simba thanks bro, I've overlooked that one for over an hour. How to close this discussion?
24th Mar 2021, 3:02 PM
Marvin Gajelomo
Marvin Gajelomo - avatar
0
/* name - "Slim", type - "Giraffe", country_id - 1 */ 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 animals.country_id desc; this is my code in which it outputs the same as the challenge but it's not congratulating or anything and it doesn't show any error. it's just nothing.
24th Mar 2021, 2:57 PM
Marvin Gajelomo
Marvin Gajelomo - avatar
0
i've tried evry scenario possible from the 1 question in the challenge but its not working INSERT INTO Animals (name, type, country_id) VALUES('Slim','Giraffe',1);
10th Apr 2021, 9:44 PM
yassin bellagoune
0
'animals' must be lowercased (not 'Animals')
10th Apr 2021, 9:49 PM
visph
visph - avatar