I have a view which is in the following format:
channel | theMonth | theCount |
-------------------------------
chaA | 3 | 5 |
-------------------------------
chaA | 2 | 2 |
-------------------------------
chaA | 1 | 4 |
-------------------------------
chaB | 2 | 1 |
-------------------------------
I would like to SUM theCount which having the same month as current month (assuming current month is March) with the previous month, thus chaA (channel) of 3 (theMonth) will have theCount value of 7 (5+2). The expected output will shown like this:
channel | theMonth | theCount |
-------------------------------
chaA | 3 | 7 | --> Note: this row has been updated.
-------------------------------
chaA | 2 | 2 | --> Retain the value
-------------------------------
chaA | 1 | 4 | --> Retain the value
-------------------------------
chaB | 2 | 1 | --> Retain the value
-------------------------------
I have been using SQL case to fix this solution, like following code, but failed:
select channel, theMonth,
case when month(date('2012-03-31')) = theMonth and
month(date('2012-03-31')) - 1 = theMonth
then sum(theCount)
else sum(theCount) end as theCount
from theView
Is there any alternate solution beside using SQL case? Please not limit to any database technology as this is a general SQL query.