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 trialOrchid Li
2,024 PointsIn the library database there's a patrons table with the columns id, first_name, last_name, address, email, library_id,
Select upper(last_time) || " " || first_name as "full_name", library_id from patrons;
Not sure what is wrong with this? Thanks, Orchid
2 Answers
KRIS NIKOLAISEN
54,971 PointsYou have two issues
1) You have column last_time
instead of last_name
2) first_name goes before last_name in full_name
Orchid Li
2,024 PointsThanks, Orchid