I would like to transpose the following SQL result:
Asum week_no
a 1 22
a 2 24
into table like this:
Aweek_22week_23week_24
a 1             0             2            
How could I achieve this on Oracle? Thanks! (I am supposed to consider weekly data over many years, so building cases is not an option)