jamminjaymeyer
Programmer
I have this in my table:
fields: id, create_date, end_date
sample data: 12345, 9/12/08, 9/22/08
I need to turn that in to this:
ID Date
12345 9/12/08
12345 9/13/08
12345 9/14/08
12345 9/15/08
12345 9/16/08
12345 9/17/08
12345 9/18/08
12345 9/19/08
12345 9/20/08
12345 9/21/08
12345 9/22/08
Writing a seperate record for each date in the range that is stored.
Any ideas are appreciated.
fields: id, create_date, end_date
sample data: 12345, 9/12/08, 9/22/08
I need to turn that in to this:
ID Date
12345 9/12/08
12345 9/13/08
12345 9/14/08
12345 9/15/08
12345 9/16/08
12345 9/17/08
12345 9/18/08
12345 9/19/08
12345 9/20/08
12345 9/21/08
12345 9/22/08
Writing a seperate record for each date in the range that is stored.
Any ideas are appreciated.