I am starting with a table that looks similar to this:
Name | StartDate | EndDate
------------------------------------
Bob | 5/1/2017 | 5/3/2017
Jeff | 6/1/2017 | 6/1/2017
Bob | 7/8/2017 | 7/10/2017
And I would like it to end up like this:
Name | Date
------------------------------------
Bob | 5/1/2017
Bob | 5/2/2017
Bob | 5/3/2017
Jeff | 6/1/2017
Bob | 7/8/2017
Bob | 7/9/2017
Bob | 7/10/2017