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 trialnaga Shanmukha
Courses Plus Student 12,482 PointsThe library is generating new library cards that will display the full name and their library ID. The full name needs to
SELECT first_name || ' ' || UPPER(last_name) AS "full_name", id AS "library_id"FROM patrons;
2 Answers
Steven Parker
231,248 PointsIt looks like the guess I made on your previous question may be right.
Your first field looks good, but the name of the second field is library_id, not "id". And it will not need an alias:
SELECT first_name || ' ' || UPPER(last_name) AS full_name, library_id FROM patrons;
naga Shanmukha
Courses Plus Student 12,482 PointsLovely answer thank you steven for guiding me.