SAP Interview Question

Write a query to retrieve the second highest value from a table using SQL

Interview Answer

Anonymous

Apr 5, 2022

Select salary from Employee Order by salary DESC limit 1,1