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 trialxczurymqdj
2,289 Pointsim haveing some issues with my code. can i get someones help.
SELECT * FROM books WHERE title = lowercase_title, uppercase_author;
1 Answer
Steven Parker
231,184 PointsHere's a few hints:
-
SELECT *
returns all columns. To return only those asked for, they must be named in theSELECT
clause - you'll want to review the syntax for adding an alias name to a column (hint: it uses the
AS
keyword) - you'll also want to review the syntax for using functions to change the case of a result
- you won't need a
WHERE
clause for this challenge (they didn't ask for any specific rows)