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 trialFRED WILLIS
1,357 Pointshelp inserting angle brackets around email address?
My code states that im missing the angle brackets around the email. How do i insert angle brackets?
1 Answer
jacksonpranica
17,610 PointsAssuming that you're working on a code challenge or something
SELECT "<" || (email column here) || ">" FROM (table name here);
That should do the trick. If not... not sure. I just did it and it worked in SQL playground.
FRED WILLIS
1,357 PointsFRED WILLIS
1,357 PointsThanks that did it.