Answers for "Write a SQL query to find employee with third highest salary, without using TOP or inner query"

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 "Write a SQL query to find employee with third highest salary, without using TOP or inner query"

Code answers related to "SQL"

Browse Popular Code Answers by Language