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 trialIndigo Matthew
704 PointsGetting an error that I am missing the > operator, but it is clearly there. Is this an issue with the system?
On the practice challenge, I keep getting an error that I am missing the > operator, but I am not. I had no problems in the SQL playground. I've checked against the cheat sheet and am not seeing what I'm doing wrong.
3 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Indigo,
The error is a bit misleading. It wants the results where the score is above 18 points. So you'd want to use > rather than >=
Indigo Matthew
704 PointsSQL Basics, filtering on more than one objective. Here is what I have written:
SELECT * FROM results WHERE away_team = "Hessle" AND away_score >= 18;
Indigo Matthew
704 PointsArgh, thank you! I just kept misreading the question. :)
Steven Parker
231,261 PointsSteven Parker
231,261 Pointswhich challenge, and what exactly did you type?