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 Review & Practice with SQL Playgrounds

Andy McDonald
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Andy McDonald
Python Development Techdegree Graduate 13,801 Points

how to find values outside of a given range in SQL

Seems like this should be able to be done but I'm not figuring it out. Hers what ive tried:

where rating != between 1 and 5; where rating is not between 1 and 5; where rating is not in (<1, >5); where rating != in (<1, >5);

dont know what else to do. Any help would be appreciated

1 Answer

You can do

...where rating not between 1 and 5;

or

...where rating < 1 or rating > 5;

Basically out of your four attempts, the second one was closest to being correct.