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

saikat dutt
saikat dutt
926 Points

CANNOT COMPLETE THE TASK ON CONCATENATION

in reporting for sql under the first objective I a have to concatenate first_name last_name and email and alias it to "to_field"

My Query is:-

SELECT first_name || " " ||  last_name || " " || email AS "to_field" FROM patrons;

The result shows I am missing out on the "<" and ">" braces.

But when I am typing a query like:-

SELECT first_name || " " ||  last_name || " " || "<" || email || ">." AS "to_field" FROM patrons;

The result pops up as there is an error with the "<" operator.

Please help me with the correct query.

1 Answer

Steven Parker
Steven Parker
231,007 Points

:point_right: It looks like you have a stray period (.) after the right angle (>).

Otherwise, your second query looks good. I bet it will pass when you remove that period.

I would have given it a try myself if you had included a link to the challenge.