Domanda di colloquio di PalTech

write a SQL query to find the Nth highest salary from an Employee table.

Risposta di colloquio

Anonimo

24 feb 2026

Select * from ( select *,row_number() over(orderby salary desc) as rnk from employees) where rnk=n