show/hide this revision's text 5 finalized question format after typo in accepted answer was corrected

I'm working on a query that needs to have some data rows combined based on date ranges. These rows are duplicated in all the data values, except the date ranges are split. For example the table data may look like

StudentID   StartDate	EndDate		Field1		Field2
1   	9/3/2007	10/20/2007	3		True
1   	10/21/2007	6/12/2008	3		True
2   	10/10/2007	3/20/2008	4		False
3   	9/3/2007	11/3/2007	8		True
3   	12/15/2007	6/12/2008	8		True

The result of the query should have the split date ranges combined. The query should combine date ranges with a gap of only one day. If there is more than a one day gap, then the rows shouldn't be combined. The rows that don't have a split date range should come through unchanged. The result would look like

StudentID   StartDate	EndDate		Field1		Field2
1   	9/3/2007	6/12/2008	3		True
2   	10/10/2007	3/20/2008	4		False
3   	9/3/2007	11/3/2007	8		True
3   	12/15/2007	6/12/2008	8		True

What would be the SELECT statement for this query?

EDIT: The query would be meant to find date ranges with a gap of only one day. If there is more than a one day gap, then the rows shouldn't be combined.

MODERATOR: The code in the accepted answer has a typo in it. The final line of the FROM clause in the second CREATE VIEW should read

    NEXT.StartDate = DATEADD(dy, 1, S.EndDate)

Otherwise the provided solution works on all test data. Thanks!!

show/hide this revision's text 4 edited tags
show/hide this revision's text 3 made a note of typo in accepted answer

I'm working on a query that needs to have some data rows combined based on date ranges. These rows are duplicated in all the data values, except the date ranges are split. For example the table data may look like

StudentID   StartDate	EndDate		Field1		Field2
1   		9/3/2007	10/20/2007	3			True
1   		10/21/2007	6/12/2008	3			True
2   		10/10/2007	3/20/2008	4			False
3   		9/3/2007	11/3/2007	8			True
3   		12/15/2007	6/12/2008	8			True

The result of the query should have the split ranges combined. The rows that don't have a split date range should come through unchanged. The result would look like

StudentID   StartDate	EndDate		Field1		Field2
1   		9/3/2007	6/12/2008	3			True
2   		10/10/2007	3/20/2008	4			False
3   		9/3/2007	11/3/2007	8			True
3   		12/15/2007	6/12/2008	8			True

What would be the SELECT statement for this query?

EDIT: The query would be meant to find date ranges with a gap of only one day. If there is more than a one day gap, then the rows shouldn't be combined.

MODERATOR: The code in the accepted answer has a typo in it. The final line of the FROM clause in the second CREATE VIEW should read

    NEXT.StartDate = DATEADD(dy, 1, S.EndDate)

Otherwise the provided solution works on all test data. Thanks!!

show/hide this revision's text 2 added 302 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 1