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 trialEllis Woods
4,453 PointsI am having difficulty with a SQL query that is asking me to find all the matches where "Hessie" scores more than 18
Find all the matches in the results table where "Hessle" was playing away as the away team and their score was above 18 points.
When I type: SELECT * FROM results WHERE away_team = "Hessie"AND away_score >18; please explain what I am doing wrong.
2 Answers
Steven Parker
231,248 PointsYou might just have a typo.
The name of the team is "Hessle" with an "L", not "Hessie" with an '"I".
Ellis Woods
4,453 PointsThank you. Right after I posted the question, I realized that I had a typo. I appreciate it.