I have this sql:
select year,
month,
sum(moves) totmoves,
sum(moves) / max(day) davg,
max(day) maxday
from
(select date_format(atd, '%Y') year,
date_format(atd, '%m') month,
date_format(atd, '%d') day,
sum(load_cont_total) + sum(unload_cont_total) moves
from
vessel_stat
where date_format(atd, '%Y%m') >= date_format(date_sub(now(), interval 13 month), '%Y%m')
and datediff(atd, ata) < 15
group by date_format(atd, '%Y/%m'), date_format(atd, '%d')
order by date_format(atd, '%Y/%m')) mv
where moves <> 0
group by year, month
This is the result of the query:
year month totmoves davg maxday
2011 12 91428 2949.2903225806454 31
2012 01 97344 3140.1290322580644 31
2012 02 101647 3505.0689655172414 29
2012 03 99700 3216.1290322580644 31
2012 04 103022 3434.0666666666666 30
2012 05 103377 3334.7419354838707 31
2012 06 86342 2878.0666666666666 30
2012 07 107419 3465.1290322580644 31
2012 08 110303 3558.1612903225805 31
2012 09 102828 3427.6 30
2012 10 107258 3459.935483870968 31
2012 11 90120 3004 30
2012 12 98396 3174.064516129032 31
2013 01 25594 3199.25 08
This will give me the total number of moves and the daily average from one month before the current month of last year (currently december 2011), then for all the months of last year and the MTD (Jan 2013). I need to do a projection for 2013 that multiplies the daily average of the current month by the max amount of days in the month, and that will give me what the current month projected might be.
Now, for the rest of the year, I need to calculate the difference daily average between January 2012 and December 2011, apply that difference to the current daily average of January 2013 and get the projected average for February. That will be multiplied to the max number of days in February and get the projected moves for February. And so on and so forth until December 2013.
If the current month changes, I want to display the actual amount of the previous months instead of the projections, obviously, because the month is already passed.
Is there a way to do this?
Many thanks