The BETWEEN operator is used to select values within a range. The values can be numbers, dates or text.
Syntax:
SELECT * FROM tableName WHERE columnName NOT BETWEEN value1 AND value2;
The value of the conditioned column should not be in the given range specified by NOT BETWEEN operator.
Example:
SELECT * FROM EMPLOYEE WHERE SALARY NOT BETWEEN 40000 AND 50000; |
Output:
EMP_ID EMP_NAME AGE SALARY 1 Parbhjot 28 35000 |
Next Topic: SQL ALIAS Statement with example.
Previous Topic: SQL BETWEEN Operator with example.