vote up 4 vote down star
1

How to find fifth highest salary in a single query in MS Sql Server

flag

0% accept rate

5 Answers

vote up 0 vote down

you can find by this query

select top 1 salary from (select top 5 salary from tbl_Employee order by salary desc) as tbl

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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

link|flag
This approach will work, but has poor performance. It is O(n^2), since for every employee in the outer query, the entire table must be scanned again. – recursive Dec 11 '08 at 19:39
Also, it will not be correct if there is a tie. – recursive Dec 16 '08 at 3:38
vote up 4 vote down

These work in MSSQL 2000

DECLARE @result int

SELECT TOP 5 @result = Salary FROM Employees ORDER BY Salary DESC

Syntax should be close. I can't test it at the moment.

Or you could go with a subquery:

SELECT MIN(Salary) FROM (
    SELECT TOP 5 Salary FROM Employees ORDER BY Salary DESC
) AS TopFive

Again, not positive if the syntax is exactly right, but the approach works.

link|flag
1  
I want it in a single query using percent... how to get that? select top 5 percent columnname from tablename order by desc using this we get first 5 records, but I want only 5th one. – Yogini Dec 11 '08 at 6:45
Both queries return a single number which is the 5th highest salary. Have you tried them? – recursive Dec 11 '08 at 19:30
vote up 15 vote down

In SQL 2005 & 2008, create a ranked subselect query, then add a where clause where the rank = 5.

select
  *
from
(
  Select
    SalesOrderID, CustomerID, Row_Number() Over (Order By SalesOrderID) as RunningCount
  From
    Sales.SalesOrderHeader
  Where
    SalesOrderID > 10000
  Order By
    SalesOrderID 
) ranked
where 
  RunningCount = 5
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.