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 trialJennifer Sanders
1,747 PointsHelp with code, please.
SELECT * FROM PATRONS WHERE ("FIRST_NAME" || "LAST_NAME" || "EMAIL"AS "<EMAIL>") AS "TO_FIELD";
1 Answer
Travis Alstrand
Treehouse Project ReviewerYou're on the right track here, there are some capitalization issues though and the placement of your <>
s. We don't need to alias the email, just concatenate hard angle brackets around it like so.
I hope this helps and makes sense.
SELECT first_name || " " || last_name || " <" || email || ">"
AS "to_field"
FROM patrons;
Jennifer Sanders
1,747 PointsTravis,
Thank you so much! I have been stuck on this question for what feels like forever!
Jenny
Travis Alstrand
Treehouse Project ReviewerAwesome! You're very welcome
Rich Donnellan
Treehouse Moderator 27,696 PointsRich Donnellan
Treehouse Moderator 27,696 PointsQuestion updated with code formatting. Check out the Markdown Cheatsheet below the Add an Answer submission for syntax examples, or choose Edit Question from the three dots next to Add Comment to see how I improved the readability.