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)
Nie jestem pewien, czy StaffID i BranchID mogą się różnić w tabeli @results, więc może być konieczne dostosowanie tego, jeśli to możliwe.