What is Between Operator in SQL ?Why use Between Operator
Between
The BETWEEN operator selects values within a given range. The values can be numbers, text, or dates.
The BETWEEN operator is inclusive: begin and end values are included.
Queries & Examples
1.
Select (Age) From users_Tbl
Where Age Between 23 and 30;
It give us result from users_Tbl where age Between 23 and 30
Share This with your friend by choosing any social account