Q
QB
I have a table that has start and end dates for various project.
ProjID Start End
1 2009-01-21 2009-05-12
2 2009-04-13 2009-07-28
3 2009-09-01 2009-11-30
I need to extract a listing that returns the non-overlapping date ranges, ie:
200-01-21 to 2009-07-28, 2009-09-01 to 2009-11-30
How can I do this using SQL?
Thank you
QB
ProjID Start End
1 2009-01-21 2009-05-12
2 2009-04-13 2009-07-28
3 2009-09-01 2009-11-30
I need to extract a listing that returns the non-overlapping date ranges, ie:
200-01-21 to 2009-07-28, 2009-09-01 to 2009-11-30
How can I do this using SQL?
Thank you
QB