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 trialAlexandra Iliuta
Courses Plus Student 3,519 PointsWrite a query that will return only the title and author. Bring back the title in lowercase and the author in uppercase.
to me it seems that the database it retrieving the right answer, but i get the message: " Bummer! Your query didn't retrieve all the books with just the lowercase_title first and the uppercase_author second."
Could someone help, please? :)
Steven Parker
231,248 PointsPlease show the answer you submitted.
Then someone can help figure out what you might need to change.
2 Answers
Jonathan Grieve
Treehouse Moderator 91,253 PointsYou can apply the changes to the format at the same time as you select it.
Try
SELECT LOWER(title) AS "lowercase_title", UPPER(author) AS "uppercase_author" FROM books;
This will ensure you're not returning the same results twice in the same query.
Alexandra Iliuta
Courses Plus Student 3,519 Pointshey,
it worked! thanks a lot! :)
Jonathan Grieve
Treehouse Moderator 91,253 Pointsno problem :)
Alexandra Iliuta
Courses Plus Student 3,519 PointsSELECT title, author, LOWER(title) AS "lowercase_title", UPPER(author) AS "uppercase_author" FROM books;
sorry,this is the code. :D
Cheo R
37,150 PointsCheo R
37,150 PointsI remember getting something similar, but testing somewhere else said my query should have worked.
Try:
Which question is it for and what is it looking for?