SELECT * FROM students WHERE fee NOT BETWEEN 1000 AND 2000;Use of Between operator in SQL Query
SELECT * FROM students WHERE fee BETWEEN 1000 AND 2000;
Excercise: Download the Database of Between operator in SQL and practice it on your XAMPP phpMyAdmin.