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

年、月、累計で並べる

    2012 を使用しているため、window functions を使用するオプションが 1 つあります。 :

    select
        yr,
        mth,
        sumamount,
        sum(sumamount) over (order by yr, mth rows unbounded preceding) runningsum
    from (select year(noticedate) yr,
                 month(noticedate) mth,
                sum(amount) sumamount
          from data123
          group by year(noticedate), month(noticedate)
    ) t
    order by yr, mth
    


    1. JDBC を tns oracle に接続する方法

    2. Postgres-これはブール列に部分インデックスを作成する正しい方法ですか?

    3. Visual Studio 2012 - データベース公開ウィザードは廃止されましたか?

    4. MySQLクエリのキャッシュ