Write a query to find the employee name whose salary lies in the range of 5000 and 25000.
For this, we can use the between operator with a where clause.
SELECT id, name, salary FROM Employee WHERE salary BETWEEN 5000 AND 25000;
BY Best Interview Question ON 21 Sep 2022