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 trialAndy McDonald
Python Development Techdegree Graduate 13,801 Pointshow 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
Joseph Yhu
PHP Development Techdegree Graduate 48,637 PointsYou 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.