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 trialUnsubscribed User
4,511 PointsWhy doesn't this work?
SELECT * FROM books ORDER BY Genre, BY Title;
2 Answers
Caleb Kemp
12,754 PointsThere are two problems
- In the challenge, Genre and Title are not supposed to be capitalized
- In front of the "title" category, an extra word "BY" was added
So, the final format should look like this
SELECT * FROM books ORDER BY category_one, category_two;
I hope that helps
Unsubscribed User
4,511 Pointsanswer: SELECT * FROM books ORDER BY genre, title;
Unsubscribed User
4,511 PointsUnsubscribed User
4,511 Pointscheers