How would I go about splitting multiple date bands into individual dates?
So from something like this:
DateStart DateEnd
---------- ----------
2013-01-01 2013-01-03
2013-01-06 2013-01-08
To something like this:
Date
----------
2013-01-01
2013-01-02
2013-01-03
2013-01-06
2013-01-07
2013-01-08