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

Josh Overly
Josh Overly
6,720 Points

Why doesn't this work?

Challenge Task 2 of 3

Select the "first_name" concatenated with the username in parentheses and alias it as "display_name". For example "Andrew (chalkers)". Note that there's a space between the end of the first_name and username in parentheses. The name of the table is "users". Type in your command below, then press Enter.

I typed in SELECT CONCAT(first_name," ",(username)) AS display_name FROM users;

the display of the fullname and users are specific and the '(' are in the prototype of the display that why you have to treat the '(' as character not as symbol : ''' SELECT CONCAT(first_name," (",username,")") AS display_name FROM users; '''

1 Answer

Josh, CONCAT can take more than two values. In this case it needs 4: first_name<br> " ("<br> username<br> ")"<br> Note the space before the opening parenthesis.

SELECT CONCAT(first_name, " (", username, ")") AS display_name FROM users
Josh Overly
Josh Overly
6,720 Points

Thank you! Of course, the parentheses need to be passed in as strings! I missed that.