Lets say I have table with following columns
- Client - string.
- Profit - integer.
- Deal_Date - date.
I need query that will retrieve sum of profit breakdown by week/month/quater etc.
e.g.
1 row, sum (profit) of all deals that registered from (03.19.2012 - 03.12.2012).
2 row, sum (profit) of all deals that registered from (03.12.2012 - 03.05.2012).
...
n row, sum (profit) of all deals that registered from (05.17.2011 - 05.10.2011).
NOTE (dates set just for example)
etc.
note (dates set just for example)
The same for month, years, etc.
Could someone help me with such query?
Btw performance is very important.