Friday, May 6, 2011

.NET and SQL Server interview questions - How to find out second highest salary from the table?

Answer:

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





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 two same records as second highest salary so the result set will look like below output table.

Output:-




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.


Please click here to see more .NET and SQL Server interview questions

Regards,

Visit Authors blog for more .NET and SQL Server interview questions

1 comment:

maddy said...

This is an excellent resource. Thank you for sharing it with us.

Interview Questions