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 trial

Databases Reporting with SQL Working with Text Concatenating Text

Abigail Solomon
Abigail Solomon
2,489 Points

How 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
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Travis Alstrand
Data Analysis Techdegree Graduate 48,307 Points

Hiya Abigail Solomon ! :wave:

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
Adane Gebreselasse
1,682 Points

SELECT first_name||' ' ||last_name || ' <'||first_name||'@teamtreehouse.com>'