I have a table like this:
|-----------------------------|
|someText | Date | someInteger|
|-----------------------------|
What i want is to select a query like this:
|-----------------------------------|
|someText | Jan | Feb | March | ... |
|-----------------------------------|
Basicaly i want to summ all the someInteger grouped by someText for each single month, aka
Select Sum(someInteger) From TABLE
Where Date = [month]
GroupBy someText
...and then, if possible, i would like to combine all the 12 queries of this into one resulting table for ease of use and possibly some optimisation.