Answers for "query to find nth highest salary"

SQL
0

nth highest salary

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

Code answers related to "query to find nth highest salary"

Code answers related to "SQL"

Browse Popular Code Answers by Language