sql >> データベース >  >> RDS >> Oracle

OracleのN番目の最大給与

    これを試してください

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


    1. MySQLクエリを使用して行をトラバースし、再帰ツリーを作成します

    2. 暗号化を利用してPostgreSQLデータベースのセキュリティを強化する

    3. postgres列Xは存在しません

    4. エラー:インデックス式の関数は、PostgresでIMMUTABLEとマークする必要があります