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 BETWEEN value1 AND value2;
The value of the conditioned column should be in the given range specified by BETWEEN operator.
Example:
SELECT * FROM EMPLOYEE WHERE SALARY BETWEEN 40000 AND 50000; |
Output:
EMP_ID EMP_NAME AGE SALARY 5 Parmender 28 45000 3 Nidhi 28 48000 4 Parbhjot 29 46000 2 Parmender 28 45000 |
Next Topic: SQL NOT BETWEEN Operator with example.
Previous Topic: SQL NOT IN Operator with example.