Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come sommare una particolare colonna con mese e anno

Puoi effettuare il pivot con l'aggregazione condizionale:

select
    year(d_date) yr,
    sum(case when month(d_date) = 1 then amount end) Jan,
    sum(case when month(d_date) = 2 then amount end) Feb,
    sum(case when month(d_date) = 3 then amount end) Mar,
    ...
    sum(case when month(d_date) = 12 then amount end) Dec,
    sum(amount) total
from mytable
group by year(d_date)
order by yr