FAQ: Code Challenge: Queries - The End

This community-built FAQ covers the “The End” exercise from the lesson “Code Challenge: Queries”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Web Development
Data Science

FAQs on the exercise The End

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

when using like there is no case sensetivity problem but when we compare text by equating we get a case sensetivity problem? is this happening with me only or did anyone else also encounter this?.This is in reference to writing queries in sql.

Did I do something wrong with this code? I was just fiddling around, and wanted to practice:

SELECT *
FROM nomnom
WHERE name LIKE ‘%BBQ%’

(no results)

Then I start doing a few of the questions, like top 5 restaurants in nomnom, my code for that was:
SELECT *

FROM nomnom

ORDER BY review DESC;

(Then when you check the results it shows a ‘Jongro BBQ’, is this a bug or glitch? in reference to my previous code)

Did you include the semicolon ( ; ) at the end of the first statement?

My code for the top 5 restaurants was similar to yours. I included a limit clause.

SELECT * FROM nomnom
ORDER BY review DESC
LIMIT 5;

SELECT COUNT(name)

FROM babies

WHERE name LIKE ‘%sie’; * FINDING OUT THE NUMBER OF names tathat end with sie*

What to look for to answer which technologu question? url ? please help?