0
votes
Combining split date ranges in a SQL query
Select StudentID, min(startdate) as startdate, max(enddate), field1, field2
from tablex
group by StudentID, field1, field2
That would yield you the result assuming the wasn't a gap between …
