I found one question answered with the Row_Number() function in the where clause. When I tried one query, I was getting the following error:
Row_Number()
select salary from ( select Salary, ROW_NUMBER() over (order by Salary desc) rn from Employee ) t where t.rn = 2