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 trialAbigail Solomon
Data Analysis Techdegree Student 4,183 PointsHow do you alias the strings you concatenate to "to_field"? And properly concatenate these strings?
I'm trying to solve the first Challenge Task for Working with Text in Reporting with SQL. Here's my following code: SELECT first_name || " " || last_name || " " || email AS "to_field" FROM patrons; . But that doesn't seem to be the right code for this challenge. What am I doing wrong?
2 Answers
Travis Alstrand
Data Analysis Techdegree Graduate 49,443 PointsHiya Abigail Solomon !
You're SUPER close!!
I had a hard time figuring this one out as well too, turns out it had to do with the <
>
angle brackets not surrounding the email
property. So you'll want a space before the first one and no space after the closing angle bracket.
SELECT first_name || ' ' || last_name || ' <' || email || '>' AS to_field FROM patrons;
Adane Gebreselasse
2,845 PointsSELECT first_name||' ' ||last_name || ' <'||first_name||'@teamtreehouse.com>'
Abigail Solomon
Data Analysis Techdegree Student 4,183 PointsAbigail Solomon
Data Analysis Techdegree Student 4,183 PointsThank you!