Answers for "rite a SQL query to get the nth highest salary from the Employee table."

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 "rite a SQL query to get the nth highest salary from the Employee table."

Code answers related to "SQL"

Browse Popular Code Answers by Language