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 SQL Basics Finding the Data You Want Filtering by Comparing Values

seems to be simple but I am missing something. task is get results of home team scores <=. Not liking my syntax

SELECT home_score FROM results WHERE home_score <= 12;

This is what I used, not sure where my error is. Thanks for the assistance.

1 Answer

Steven Parker
Steven Parker
229,732 Points

The instructions say "Find all results where the home team's score is above 12.", so there are two issues:

  • "Find all results" implies you should "show all columns", so select " * " instead of "home_score"
  • they ask for records where score "is above 12", but "<=" means "less than or equal"