Answers for "Write a query to find the 4th maximum salary in the employees table"

SQL
0

3rd height salary sql

SELECT MIN(EmpSalary) from ( 
	SELECT EmpSalary from Employee ORDER BY EmpSalary DESC LIMIT 3 
);
Posted by: Guest on October-20-2020
0

n highest salary in sql

SELECT salary FROM Employee ORDER BY salary DESC LIMIT N-1, 1
Posted by: Guest on February-07-2020

Code answers related to "Write a query to find the 4th maximum salary in the employees table"

Code answers related to "SQL"

Browse Popular Code Answers by Language