Find the 4th Highest employee salary from the following table Question Find the 4th highest salary from the given employee table in progress 0 SQL sirajp99 55 years 1 Answer 964 views Newbie 0
Answer ( 1 )
SELECT TOP 1 salary FROM ( SELECT DISTINCT TOP 4 salary FROM Employeetable ORDER BY salary DESC ) AS temp ORDER BY salary
Attachment