SQL Query To Find Second Highest Salary - GeeksforGeeks
SQL Query To Find Second Highest Salary - GeeksforGeeks
- GeeksforGeeks
Name Salary
---------------
abc 100000
bcd 1000000
efg 40000
ghi 500000
How to find the employee whose salar y is second highest. For example, in above table,
We can nest the above quer y to find the second largest salar y.
FROM employee
FROM employee);
https://www.geeksforgeeks.org/sql-query-to-find-second-largest-salary/ 1/6
6/19/2021 SQL query to find second highest salary? - GeeksforGeeks
Related Articles
FROM employee
WHERE salary IN
FROM employee);
FROM employee
FROM employee);
IN SQL Ser ver using Common Table Expression or CTE, we can find the second highest
salar y:
WITH T AS
SELECT *
FROM Employees
SELECT Name
FROM T
WHERE Rnk=2;
FROM employee
FROM employee
FROM employee)
);
Note that instead of nesting for second, third, etc largest salar y, we can find nth salar y
SELECT salary
FROM employee
FROM employee A
FROM employee B
WHERE B.salary>A.salary)
https://www.geeksforgeeks.org/sql-query-to-find-second-largest-salary/ 3/6
6/19/2021 SQL query to find second highest salary? - GeeksforGeeks
This ar ticle is contributed by Kar tik. Please write comments if you find anything incorrect,
or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the impor tant CS Theor y
concepts for SDE inter views with the CS Theor y Course at a student-friendly price and
Like 0
Previous Next
01, Apr 21
21, Dec 15
10, Apr 21
https://www.geeksforgeeks.org/sql-query-to-find-second-largest-salary/ 4/6
6/19/2021 SQL query to find second highest salary? - GeeksforGeeks
Ar ticle Contributed By :
GeeksforGeeks
Current difficulty :
Easy
Load Comments
Company Learn
About Us Algorithms
Careers Data Structures
▲
Privacy Policy Languages
https://www.geeksforgeeks.org/sql-query-to-find-second-largest-salary/ 5/6
6/19/2021
y y g g
SQL query to find second highest salary? - GeeksforGeeks
Contact Us CS
Subjects
Copyright Policy Video Tutorials
Practice Contribute
Courses Write an Article
Company-wise Write Interview
Experience
Topic-wise Internships
How to begin? Videos
@geeksforgeeks
, Some rights reserved
https://www.geeksforgeeks.org/sql-query-to-find-second-largest-salary/ 6/6