To display the products outside the range of the previous example, use NOT BETWEEN:
SELECT * FROM Products
WHERE Price NOT BETWEEN 10 AND 20;
WHERE Price NOT BETWEEN 10 AND 20;
Practice Excercise Practice now
To display the products outside the range of the previous example, use NOT BETWEEN:
Practice Excercise Practice now