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

Getting 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.

Steven Parker
Steven Parker
231,261 Points

which challenge, and what exactly did you type?

3 Answers

Hi 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 >=

SQL Basics, filtering on more than one objective. Here is what I have written:

SELECT * FROM results WHERE away_team = "Hessle" AND away_score >= 18;

Argh, thank you! I just kept misreading the question. :)