Answers for "select 10th highest salary sql"

SQL
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 "select 10th highest salary sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language