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

Issue with answering code challenge of length of title in SQL

Whenever I try to enter queries for this code challenge, there are always communication errors being reported. Is there any reason why this is happening and how to overcome this issue?

3 Answers

Martin Sole
Martin Sole
80,986 Points

Hi Andrew, I seem to be having the same issue with the loss of connection for this challenge, I'm using the below query. I have tried this within the workspace using the customer table and username column and it worked fine.

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

Andrew Chalkley
STAFF
Andrew Chalkley
Treehouse Guest Teacher

Apologies, the challenge should work now :)

SELECT title, MAX(LENGTH(title)) AS longest_length FROM books;

from this forum thread;

https://teamtreehouse.com/community/problems-with-sql-challenge