Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLoy Yee Ko
5,814 PointsSELECT * FROM books WHERE genre ORDER BY first_published ASC LIMIT 5; fail to return any result
The quiz has asked to write a query to obtain top 5 books from fantasy genre from oldest to the latest, SELECT * FROM books WHERE genre ORDER BY first_published ASC LIMIT 5; is my answer and I am stuck
1 Answer
Chris Shearon
Courses Plus Student 17,330 PointsLooks like you're missing a predicate in your WHERE clause. The genre the question is asking for is 'Fantasy'.
The query should look like this.
select * from books where genre = 'Fantasy' order by first_published asc limit 5;