I think this is it, in SQL Server - I didn't do it in Access. I haven't tested it for fancy conditions such as overlapping several records, etc., but this should get you started. It updates all the duplicate, small-gap records, leaving extras in the database. MSDN has a page on eliminating duplicates: http://support.microsoft.com/kb/139444
select
studentid, min(startdate) as StartDate, max(enddate) as EndDate, field1, field2,
datediff(dd, Min(endDate),max(startDate)) as MaxGap
into #tempIDs
from #student
group by studentid, field1, field2
-- Update the relevant records. Keeps two copies of the massaged record
-- - extra will need to be deleted.
update #student
set startdate = #TempIDS.startdate, enddate = #tempIDS.EndDate
from #tempIDS
where #student.studentid = #TempIDs.StudentID and MaxGap < 2