


The NOT operator is used to exclude certain rows from the results.
It is used with WHERE to reverse a condition, showing only the data that does not match the given criteria.
SELECT column1, column2 FROM table_name WHERE NOT condition;SELECT * FROM Students WHERE NOT Department = 'Computer Science';Question number:
Contact
Donate
About
Privacy Policy
Changelog