How to find fifth highest salary in a single query in SQL Server
You can find it by using this query:
select top 1 salary from (select top 5 salary from tbl_Employee order by salary desc) as tbl order by salary asc