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

Question Bummer: You're missing the angle brackets around the email address.

Please help me

1 Answer

Hello Miroslav, I think we are going over same courses so I have an idea what might be the issue based on your question:

There's a quiz where you need to retrieve name and mail from database, trick is in the text of the task: you are expected to return email displayed as examplemail@mail.org in brackets - if your code gives back examplemail@mail.org it will give you this error, you need to modify it to return < examplemail@mail.org > so you need to modify a little, something like this "<"|| code_that_pulls_email_goes_here||">" and that should solve it.