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 trial

Databases Reporting with SQL Ordering, Limiting and Paging Results Limiting Results

Cannot complete the answer to the question

I cannot get past this exercise.

Steven Parker
Steven Parker
229,708 Points

Give it your best shot, and if you still don't get it right, show your code here so we can help you work it out.

You might want to take a look at these videos about Posting a Question, and using Markdown formatting to preserve the code's appearance.

2 Answers

Steven Parker
Steven Parker
229,708 Points

To avoid confusion and give yourself the best chance at a rapid response, always start a fresh question instead of adding one as an "answer" to someone else's!

But in this case you're close, but have a few syntax issues:

  • "Science Fiction" should be used in the WHERE clause, and compared to genre
  • first_published should be used in the ORDER BY clause

I can't get past the second challenge task in the Limiting Results challenge.

Here's my code

SELECT * FROM books WHERE first_published ORDER BY "Science Fiction" ASC LIMIT 1;