Thursday, August 16, 2012

Select second highest salary from the table?

Answer:
Let's us assume that we have the following table of Employee.

Emp_IdEmp_NameEmp_Salary
1Shiv17000
2Raju13500
3Sham15000
4Moosa11000
5Feroz12000

Now we want to find out second highest salary from Employee table, as you see that the second highest salary is 15000 and we want to display the same.

Query:-
SELECT Emp_Name,Emp_Salary
FROM Employee e1
WHERE
2 = (SELECT COUNT(DISTINCT (e2.Emp_Salary))FROM Employee e2 WHERE e2.Emp_Salary >= e1.Emp_Salary)

The above employee table contains the second highest salary as 15000 therefore the result set will look like below output table.

Output:-
Emp_NameEmp_Salary
Sham15000
        
If the table contains two or more same record of salary which is the second highest salary then the query will give you all the record of second highest salary as you see in the above output table.



No comments:

Post a Comment