Skip to content
Advertisement

SQL query to find Nth highest salary from a salary table

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

Advertisement

Answer

You can use a Common Table Expression (CTE) to derive the answer.

Let’s say you have the following salaries in the table Salaries:

We will use:

This will create a row number for each row after it has been sorted by the Salary in descending order, then retrieve the third row (which contains the third-highest record).


For those of you who don’t want a CTE (or are stuck in SQL 2000):

[Note: this performs noticably worse than the above example; running them side-by-side with an exceution plans shows a query cost of 36% for the CTE and 64% for the subquery]:

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.

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.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement