How to find fifth highest salary in a single query in MS Sql Server
|
1
|
|
|
|
|
|
you can find by this query select top 1 salary from (select top 5 salary from tbl_Employee order by salary desc) as tbl |
||
|
|
|
|
SELECT TOP 1 salary FROM ( SELECT DISTINCT TOP n salary FROM employee ORDER BY salary DESC) a ORDER BY salary where n > 1 (n is always greater than one) you can find any number of highest salary from this query |
||
|
|
|
|
You can try some thing like : select salary from Employees a where 5=(select count(distinct salary) from Employees b where a.salary > b.salary) order by salary desc |
||
|
|
These work in MSSQL 2000
Syntax should be close. I can't test it at the moment. Or you could go with a subquery:
Again, not positive if the syntax is exactly right, but the approach works. |
||||||
|
|
|
In SQL 2005 & 2008, create a ranked subselect query, then add a where clause where the rank = 5.
|
|||
|
|
