Answers for "nth highest salary mysql"

SQL
2

2nd highest salary in mysql

#2nd Most highest salary using Limit & Order By
SELECT Salary FROM (SELECT Salary FROM Employee ORDER BY salary DESC LIMIT 2) AS Emp ORDER BY salary LIMIT 1;
Posted by: Guest on November-06-2020
5

n highest salary in sql

SELECT TOP 1 salary
FROM (
SELECT DISTINCT TOP N salary
FROM #Employee
ORDER BY salary DESC
) AS temp
ORDER BY salary
Posted by: Guest on February-08-2020

Code answers related to "nth highest salary mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language