I have a large table of records that records consultants work. I need to take each row of data that includes a date range and transform the row into separate records in a new table. I have used one record as an example. See below (dates in UK format dd/mm/yyyy) :
C_Name Customer_Name StartDate EndDate
Bob Jones AcmeHealth 1/2/2018 5/2/2018
Transform into …
Name Customer_Name WorkDate
Bob Jones AcmeHealth 1/2/2018
Bob Jones AcmeHealth 2/2/2018
Bob Jones AcmeHealth 3/2/2018
Bob Jones AcmeHealth 4/2/2018
Bob Jones AcmeHealth 5/2/2018
Any ideas how I can do this ?