I have a result set like:
fullDate service Monthlybilled
-----------------------------------------------------
2015-08-01 wash car 300.00
2015-10-01 brake test 500.00
2015-12-01 oil change 200.00
I need to show another one like:
fullDate service Monthlybilled
-----------------------------------------------------
....
2015-07-01 none 0.00
2015-08-01 wash car 300.00
2015-09-01 none 0.00
2015-10-01 brake test 500.00
2015-11-01 none 0.00
2015-12-01 oil change 200.00
2016-01-01 none 0.00
...
i.e. for those months where no activity was "detected" I need to add a row that says none and 0.00
Any suggestions, please? Thanks