Answers for "write an sql query to determine the 5th highest salary without using top or limit method"

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

Code answers related to "write an sql query to determine the 5th highest salary without using top or limit method"

Code answers related to "SQL"

Browse Popular Code Answers by Language