I have this table:
Start_date | End_date | Due_day |
---|---|---|
2016.03.01 | 2016.06.23 | 12 |
I want to produce table like this (to generate the date (month+due day) between start date and end date)
Start_date | End_date | Mid_date | Due_day |
---|---|---|---|
2016.03.01 | 2016.06.23 | 2016.03.12 | 12 |
2016.03.01 | 2016.06.23 | 2016.04.12 | 12 |
2016.03.01 | 2016.06.23 | 2016.05.12 | 12 |
2016.03.01 | 2016.06.23 | 2016.06.12 | 12 |