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

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

What would be the SELECT statement for this query?