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 trialsevdiye ozlutas
1,453 PointsWhat should be the code for this one? I have entered SELECT * FROM books ORDER BY first_published DSC;
But it is still giving me a syntax error.
1 Answer
Luke Maslany
3,558 PointsI’m assuming you’re looking at Task 2? If so, you almost had it. The keyword to sort descending is DESC.
Task 1: SELECT * FROM phone_book ORDER BY last_name, first_name
Task 2: SELECT * FROM books ORDER BY first_published DESC
Task 3: SELECT * FROM books ORDER BY genre, title
Tommy Gebru
30,164 PointsTommy Gebru
30,164 PointsSure lets give all the answers