Pregunta de entrevista de PalTech

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

Respuesta de la entrevista

Anónimo

24 feb 2026

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