I have a table called dateRange which looks like this
|ID|dateStart| dateEnd|
| 1|14-May-14|16-May-14|
| 1|20-May-14|21-May-14|
| 2|20-May-14|21-May-14|
Which I would like to convert to the following format in a table called dateListed
|ID| date|
| 1|14-May-14|
| 1|15-May-14|
| 1|16-May-14|
| 1|20-May-14|
| 1|21-May-14|
| 2|20-May-14|
| 2|21-May-14|
I have reviewed the following question, Convert Date Range to Individual Days, however, as the data is slightly different I was hoping someone could assist me?
Thanks.