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 trialNelson Govea
Courses Plus Student 1,951 PointsReporting 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.
2 Answers
Steven Parker
231,248 PointsYou 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.
Nelson Govea
Courses Plus Student 1,951 PointsThank you will try that.
Sebastian Sõeruer
12,353 PointsSebastian Sõeruer
12,353 PointsSELECT * FROM books where ...... ORDER BY first_published ASC LIMIT 5;