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 w/SQL, Not able to get the right code for challenge Task 1 of 2 using the ORDER BY and WHERE with LIMIT clause

SELECT * FROM books ORDER BY first_published ASC LIMIT 5; Is asking to input the WHERE statement. Need help.

SELECT * FROM books where ...... ORDER BY first_published ASC LIMIT 5;

2 Answers

Steven Parker
Steven Parker
241,970 Points

You don't have a WHERE clause yet.

SELECT * FROM books /*your WHERE clause goes here*/ ORDER BY first_published ASC LIMIT 5;

To enable the most complete and accurate analysis, always include a link to the course page you were working with.

Thank you will try that.