Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I find the Nth highest salary in a table containing salaries in SQL Server?

share|improve this question

10 Answers

up vote 20 down vote accepted

Try

SELECT TOP 1 Salary
FROM 
(
    SELECT TOP N Salary
    FROM Salaries
    ORDER BY Salary DESC
) SalarySubquery
ORDER BY Salary ASC

where N is defined by you.

SalarySubquery is the alias I have given to the subquery, or the query that is in parentheses.

What the subquery does is it selects the top N salaries (we'll say 3 in this case), and orders them by the greatest salary. So let's say you have the following salaries in the table Salaries:

 EmployeeID  Salary
--------------------
     10101  50,000
     90140  35,000
     90151  72,000
     18010  39,000
     92389  80,000

If we want to see the third-highest salary, the subquery would return:

 Salary
-----------
80,000
72,000
50,000

The outer query then selects the first salary from the subquery, except we're sorting it ascending this time, which sorts from smallest to largest, so 50,000 would be the first record sorted ascending.

As you can see, 50,000 is indeed the third-highest salary in the example.

share|improve this answer
this part is unclear to me could u explain it to me SalarySubquery ORDER BY Salary ASC – NoviceToDotNet Oct 22 '10 at 19:32
@NoviceToDotNet - I've edited my answer based on your comments -- I hope they clear things up. – LittleBobbyTables Oct 22 '10 at 20:09

You could use row_number to pick a specific row. For example, the 42nd highest salary:

select  *
from    (
        select  row_number() over (order by Salary desc) as rn
        ,       *
        from    YourTable
        ) as Subquery
where   rn = 42

Windowed functions like row_number can only appear in select or order by clauses. The workaround is placing the row_number in a subquery.

share|improve this answer
select MIN(salary) from (
select top 5 salary from employees order by salary desc) x
share|improve this answer

try it...

use table_name
select MAX(salary)
from emp_salary
WHERE marks NOT IN (select MAX(marks)
from student_marks )
share|improve this answer

Simple way WITHOUT using any special feature specific to Oracle, MySQL etc. Suppose in EMPLOYEE table Salaries can be repeated. Use query to find out rank of each ID.

select  *
from  (
select tout.sal, id, (select count(*) +1 from (select distinct(sal) distsal from     
EMPLOYEE ) where  distsal >tout.sal)  as rank  from EMPLOYEE tout
) result
order by rank

First we find out distinct salaries. Then we find out count of distinct salaries greater than each row. This is nothing but the rank of that id. For highest salary, this count will be zero. So '+1' is done to start rank from 1.

Now we can get IDs at Nth rank by adding where clause to above query.

select  *
from  (
select tout.sal, id, (select count(*) +1 from (select distinct(sal) distsal from     
EMPLOYEE ) where  distsal >tout.sal)  as rank  from EMPLOYEE tout
) result
where rank = N;
share|improve this answer

The easiest method is to get 2nd higest salary from table in SQL:

sql> select max(sal) from emp where sal not in (select max(sal) from emp);
share|improve this answer

Dont forget to use the distinct keyword:-

SELECT TOP 1 Salary
FROM 
(
    SELECT Distinct TOP N Salary
    FROM Salaries
    ORDER BY Salary DESC
) SalarySubquery
ORDER BY Salary ASC
share|improve this answer
EmpID   Name    Salary
1   A   100
2   B   800
3   C   300
4   D   400
5   E   500
6   F   200
7   G   600

SELECT * FROM Employee E1
WHERE (N-1) = (
                SELECT COUNT(DISTINCT(E2.Salary))
                FROM Employee E2
                WHERE E2.Salary > E1.Salary
              )

Suppose you want to find 5th highest salary, which means there are total 4 employees who have salary greater than 5th highest employee. So for each row from the outer query check the total number of salaries which are greater than current salary. Outer query will work for 100 first and check for number of salaries greater than 100. It will be 6, do not match (5-1) = 6 where clause of outerquery. Then for 800, and check for number of salaries greater than 800, 4=0 false then work for 300 and finally there are totally 4 records in the table which are greater than 300. Therefore 4=4 will meet the where clause and will return 3 C 300.

share|improve this answer

Very simple one query to find nth highest salary from table

SELECT DISTINCT(Sal) FROM emp ORDER BY Salary DESC LIMIT n,1

share|improve this answer
This is tagged as [sql-server]; SQL Server does not have the LIMIT keyword – LittleBobbyTables Apr 25 at 15:29

IN Mysql

Find 5th largest salary employee

SELECT * FROM employee ORDER BY salary DESC LIMIT 4,1; (offset, limit)

select employee table order by salary Ascending order (mysql use sorting for this) Now use the offset and limit.

Suppose we want 2nd large salary so use LIMIT 1,1
Suppose we want 3rd large salary so use LIMIT 2,1
Suppose we want 4th large salary so use LIMIT 3,1

share|improve this answer
This is tagged as [sql-server]; SQL Server does not have the LIMIT keyword – LittleBobbyTables Apr 25 at 15:29

protected by LittleBobbyTables Apr 29 at 13:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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