Chewy Interview Question

Write a SQL query to select the 2nd highest salary (data tables on white board)

Interview Answer

Anonymous

Jul 13, 2019

Select top 1 From ( Select top 2 From table Order by DESC) order by ASC;