select
StaffId,
BranchId,
MIN(StartTime),
MAX(EndTime),
PatientId
from
(
select *,
ROW_NUMBER() over (order by starttime)
- ROW_NUMBER() over (partition by isnull(PatientID,-1) order by starttime) rn
from @results
) v
group by staffid, branchid, patientid, rn
order by MIN (starttime)
Je ne sais pas si StaffID et BranchID peuvent varier dans le tableau @results, vous devrez donc peut-être modifier cela s'ils le peuvent.