In this post, let us learn to get the third highest salary for each department in a table using MySQL.
MySQL table creation
In order to find the third highest salary for each department in a table using MySQL, we will create a table like below.
The following table contains the salary details of a few employees across different departments.
Create Table Query
Insert Query
Table Data
nth Salary calculation for each group
We shall find the nth highest salary with the help of dense rank funtion available in MySQL.Here comes the syntax and usage of it.
Syntax :
DENSE_RANK() OVER (PARTITION BY <columnname> ORDER BY <columnname> desc)
The dense_rank helps us in ranking the records over each partition. To get to know about rank and dense rank well, Please refer to the below link.
https://beginnersbug.com/rank-and-dense-rank-in-pyspark-dataframe/
The partition by clause divides the entire data into groups based on the column specified.
The order by clause sorts the column within each group whose nth calculation needs to be performed.
Calculating dense rank
For the employee table, the entire data gets divided based on the Dep_name column and ordered by the salary column.
The dense rank function will be applied to each partitioned data to calculate the highest salary.
Third highest salary for each department
With the calculated dense rank value for each department, we could filter the third dense rank to get the third highest salary.
Reference
https://www.mysqltutorial.org/mysql-window-functions/mysql-dense_rank-function/