Home » SQL

SQL Query to find the Nth minimum Salary

Here, we will learn how to find Nth minimum salary of an employee from given table in MySQL?
Submitted by Preeti Jain, on January 02, 2018

Given a table ‘EMPLOYEE’ and we have to find Nth minimum salary of an employee.

TABLE: EMPLOYEE

    ID	NAME	CONTACT	SALARY
    1	PREETI	123456	2000
    2	ARPIT	123789	3000
    3	ADI	147258	5000
    4	APOORV	789632	10000
    5	RIDDHI	148796	20000
    6	REX	148965	30000
    7	WENDY	128659	40000
    8	ANIKET	123489	50000

Case 1: Write a query to find first minimum salary employee from Employee.

mysql> select * from EMPLOYEE where salary = (select min(salary) from EMPLOYEE);

Output/Result

    ID	NAME	CONTACT	SALARY
    1	PREETI	123456	2000

Case 2: Write a query to find second minimum salary employee from Employee.

mysql> select * from EMPLOYEE 
where salary = (select min(salary) from EMPLOYEE 
where salary > (select min(salary) from EMPLOYEE));

Output/Result

    ID	NAME	CONTACT	SALARY
    2	ARPIT	123789	3000

Case 3: Write a query to find third minimum salary employee from Employee.

mysql> select * from EMPLOYEE 
where salary = (select min(salary) from EMPLOYEE 
where salary > (select min(salary) from EMPLOYEE 
where salary > select(min(salary) from EMPLOYEE)));

Output/Result

ID	NAME	CONTACT	SALARY
3	ADI	147258	5000

Case 4: Write a query to find fourth minimum salary employee from Employee.

mysql> select * from EMPLOYEE 
where salary = (select min(salary) from EMPLOYEE 
where salary > (select min(salary) from EMPLOYEE 
where salary > (select(min(salary) from EMPLOYEE 
where salary>(select min(salary) from EMPLOYEE))));


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.