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

How do I concatenate into this exact format - Andrew Chalkley <andrew@teamtreehouse.com>?

I've been struggling with this one for days.

2 Answers

Tareq Alothman
Tareq Alothman
17,921 Points

Here is how I would do it:

select concat(firstname, ' ', lastname, '<', tolower(firstname), '@teamtreehouse.com>')

Hope this does it for ya.

Tareq Alothman
Tareq Alothman
17,921 Points

here is the correct answer for this challenge:

SELECT FIRST_NAME || ' ' || LAST_NAME || ' <' || EMAIL || '>' AS "to_field" FROM PATRONS

good luck :)