How can I find the Nth highest salary in a table containing salaries in SQL Server?
|
Try
where N is defined by you.
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:
If we want to see the third-highest salary, the subquery would return:
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. |
|||||
|
|
You could use
Windowed functions like |
||||
|
|
|
||||
|
|
|
try it...
|
||||
|
|
|
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.
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.
|
|||
|
|
|
The easiest method is to get
|
||||
|
|
|
Dont forget to use the
|
||||
|
|
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 |
||||
|
|
|
Very simple one query to find nth highest salary from table SELECT DISTINCT(Sal) FROM emp ORDER BY Salary DESC LIMIT n,1 |
|||
|
|
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 |
||||
|
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.




