Oracle
 sql >> Database >  >> RDS >> Oracle

Ennesimo stipendio massimo in Oracle

prova questo

select *
  from
  (
    select
        sal
          ,dense_rank() over (order by sal desc) ranking
    from   table
  )
  where ranking = 4 -- Replace 4 with any value of N