Answers for "USING SQL BETWEEN"

SQL
3

sql between

SELECT * FROM my_table WHERE my_col BETWEEN 10 AND 20;
-- equivalent to
SELECT * FROM my_table WHERE my_col >= 10 AND my_col <= 20;
Posted by: Guest on May-04-2021
0

between keyword in sql

Select * From employees
Where salary >= 4000
And salary  <= 6000;

We can also use between

Select * From employees
Where salary BETWEEN 4000 AND 6000;
Posted by: Guest on January-27-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language