sql >> Base de Datos >  >> RDS >> Sqlserver

Ordenar por año, mes junto con la suma acumulada

Como está usando 2012, aquí hay una opción que usa window functions :

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