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 trialVan Nguyen
3,533 PointsWhere can I put the angle bracket around the email?
I tried this one , seemed ridiculous .
SELECT first_name || " " || last_name || " <" || email || ">." || AS "to_field" FROM patrons;
I could not think about something else this stage, please help.
Van,
1 Answer
Markus Lysgaard
3,293 PointsHi,
If you look after the ">" you have added ||. That will try to merge AS with the rest. I did that mistake too heh.. Just remove that and you should be fine:)
Your anwser: SELECT first_name || " " || last_name || " <" || email || ">." || AS "to_field" FROM patrons;
Right anwser: SELECT first_name || " " || last_name || " <" || email || ">." AS "to_field" FROM patrons;