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 Creating Excerpts

I don't understand where I should SELECT a new column and where I should concatenate the new output

I'm confused where in the statement I select a new column and where I concatenate both the first_name and last_name to output the new initials column.

1 Answer

chinmayanand mishra
chinmayanand mishra
3,927 Points

Its not about conact we need to use the SUBSTR function in the first name to pull the initial. The output will be something like this

select SUBSTR(first_name,1,1) as "initial", last_name from customers