Empleador activo
write a SQL query to find the Nth highest salary from an Employee table.
Anónimo
Select * from ( select *,row_number() over(orderby salary desc) as rnk from employees) where rnk=n
Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.
Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.