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 Getting the Length of a String

Hello! I can't get through Challenge task "Getting the Length of a String"

My answer is: SELECT title, LENGTH(title) AS length FROM books AS longest_length ORDER BY length DESC LIMIT 1; I checked this answer in a database, it's correct.

3 Answers

Steven Parker
Steven Parker
230,178 Points

This statement has no syntax errors, but it does something different from what the challenge asked for. This kind of "false positive" is a common problem when testing challenge code outside of the challenge.

The challenge asked that the column that shows the calculation result to be aliased as "longest_length" but this code names that column "length" instead.

This code also creates an alias for the table, but that isn't needed for this challenge.

Thuy Van Ngo
Thuy Van Ngo
3,289 Points

It didn't work that way either. I've tried your suggestion. It still shows as a wrong solution.

Thuy Van Ngo
Thuy Van Ngo
3,289 Points

SELECT title, LENGTH(title) AS length FROM books ORDER BY length DESC LIMIT 1; still wrong...

Steven Parker
Steven Parker
230,178 Points

The instructions say to "Alias the result of the length calculation to be longest_length." But this code is using just "length" as the alias instead.

Next time start a new question instead of asking one in an answer. It will be seen by more students that way, and give you a better chance for a rapid reply.

Thuy Van Ngo
Thuy Van Ngo
3,289 Points

Thanks for your tip :)