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.
No comments:
Post a Comment