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

Walid Johnson
Walid Johnson
17,358 Points

How I can retrieve the emails in the correct format.

I need email retrieve the emails in the correct format, as <email>

1 Answer

Steven Parker
Steven Parker
229,786 Points

This is a job for concatentation. The operator that does this is "||". So if you wanted to put angles around a field named "email", and then call the whole thing "my_email", you could do this:

SELECT '<' || email || '>' AS my_email FROM ... /* db name and other clauses here */

Sometimes you'll join more than one field and strings all together. For example, putting a name in front of the email (and calling it "name_and_email") might look like this (note the extra space with the first angle):

SELECT name || ' <' || email || '>' AS name_and_email FROM ... /* db name and other clauses here */