Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

dfeem
4,660 PointsStuck on this task?
SELECT first_name || " " || last_name || " " || email AS "to_field" FROM patrons;
That's what I wrote and it's not correct.
2 Answers

KRIS NIKOLAISEN
54,703 PointsSELECT first_name || " " || last_name || " <" || email || ">" AS 'to_field'
FROM patrons

KRIS NIKOLAISEN
54,703 Pointsyou are missing the angle brackets that enclose the email address

dfeem
4,660 PointsI'm still confused. I tried to put angle bracket at various places in statement and haven't been able to find correct solution?
dfeem
4,660 Pointsdfeem
4,660 PointsThanks Kris! I tried it like that, but I didn't leave a space before the first bracket. I appreciate it.