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 trialRohit Gopalan
81,945 PointsIssue 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
Andrew Chalkley
Treehouse Guest TeacherCan you give me some example queries?
Andrew Chalkley
Treehouse Guest TeacherApologies, the challenge should work now :)
james white
78,399 PointsSELECT title, MAX(LENGTH(title)) AS longest_length FROM books;
from this forum thread;
https://teamtreehouse.com/community/problems-with-sql-challenge
Martin Sole
82,199 PointsMartin Sole
82,199 PointsHi 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;