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

Ed Sadler
Ed Sadler
11,009 Points

Can someone take a look at my SQL statement. I'm obviously overlooking something.

I keep getting a "recheck your statement" message but I've tried everything. I don't know if my statement is wrong or there's an issue with the program.

Can you post your SQL statement?

Ed Sadler
Ed Sadler
11,009 Points

Yes, sorry.

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

1 Answer

LENGTH is a function. You'll want to sort by your alias like this:

SELECT title, LENGTH(title) as longest_length FROM books ORDER BY longest_length DESC LIMIT 1; 
Ed Sadler
Ed Sadler
11,009 Points

That's awesome. Thank you. I don't think I would have figured that one out.