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

Aryan Naimi
Aryan Naimi
6,050 Points

Does anyone know how to answer this question? i keep getting Bummer even if the answer is right..

when I put this answer SELECT * FROM results WHERE away_team AND away_score >= 18; it says Bummer you're missing the > operator. If i remove the equal sign it says bummer you're missing the >= operator help?

1 Answer

Steven Parker
Steven Parker
231,128 Points

It looks like you're missing parts of a comparison.

Your filter clause starts out with: "WHERE away_team" — but to be a complete expression you need a comparison operator and another operand. What is it you want to check about away_team?

In future questions, please remember to provide a link to the course page to facilitate analysis of the issue.