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

Postgresqlは、特定の合計金額に達するまで選択します

    select id, 
           date, 
           amount, 
           running_total
    from (
        select id,
               date,
               amount,
               sum(amount) over (order by date asc) as running_total
        from transactions
    ) t
    where running_total <= 6
    


    1. MySQLビューを作成して使用する方法

    2. mysqlで選択された値のコンマ区切りの文字列

    3. 現在のビューのAPPL_TOPスナップショットとは

    4. 特定のデータベースに対して最後に実行されたクエリ