Using WHERE with numbers
Filtering with WHERE
allows you to analyze your data better. You may have a dataset that includes a range of different movies, and you need to do a case study on the most notable films with the biggest budgets. In this case, you'll want to filter your data to a specific budget
range.
Now it's your turn to use the WHERE
clause to filter numeric values!
This exercise is part of the course
Intermediate SQL
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
-- Select film_id and imdb_score with an imdb_score over 7.0
___