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

SQL:total acumulado:año hasta la fecha, año anterior hasta la fecha y últimos 12 meses consecutivos

Lo siguiente generará sus columnas de total acumulado.

Ejemplo

Select *
      ,Running12       = sum(Value) over (Partition By ID Order By Date Rows Between 11 Preceding and Current Row)
      ,CalendarYTD     = sum(Value) over (Partition By ID,Year(Date) Order By Date)
      ,PrevCalendarYTD = case when month(date)<>1 then null else (Select Value from @YourTable Where ID=A.ID and date=dateadd(year,-1,A.date)) end
 From @YourTable A
 Order By ID,Date

Devoluciones