.NET and SQL Server interview questions - Can you get second highest salary from the table?
Shivprasad Koirala
Select an image from your device to upload
SELECT Emp_Name,Emp_SalaryFROM Employee e1WHERE2 = (SELECT COUNT(DISTINCT (e2.Emp_Salary))FROM Employee e2 WHERE e2.Emp_Salary >= e1.Emp_Salary)
Please click here to see more .NET and SQL Server interview questions