Answers for "calculate 3rd highest salary sql"

SQL
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
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 "calculate 3rd highest salary sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language