Answers for "salary from worker order by salary desc limit n-1,1; how this works"

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 "salary from worker order by salary desc limit n-1,1; how this works"

Code answers related to "SQL"

Browse Popular Code Answers by Language