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

Unable to complete the objective. Received, "Bummer: Expecting results like L Chalkley' not 'L Chalkley'."

The video before the question shows using functions like SUBSTR to receive specific starting positions and lengths of column data. After implementing the same functions into the objective, an error occurs stating, Bummer: Expecting results like 'L Chalkley' not 'L Chalkley'. The last name has been added after and in the same alias however, the correct solution is unclear to me. Changed the quotation marks and single quotation marks for the alias but the same error occurs. The current query's not working,

SELECT SUBSTR(first_name, 1, 1) || " " || last_name AS initial FROM customers; SELECT SUBSTR(first_name, 1, 1) || " " AS initial, last_name FROM customers; SELECT SUBSTR(first_name, 1, 1) || " " AS initial, SUBSTR(last_name, 1, LENGTH(last_name)), FROM customers;

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,763 Points

Jack you are really close. First I'm not sure why you have 2 selects. You can easily do the task with one of the selects you have. Second you don't need || " " ||. You are not outputting a string. You simply need to select the data.

The important part is you have the SUBSTR correct. So without giving you the answer do something like:

select first_name as alias, last_name from customers

for first name put what you have for SUBSTR and for alias put the alias name initial.

Hope this helps Jack and keep at it!