Utilisez Grouper par sur un tableau temporaire avec un patient et un médecin distincts
select Patient, count(*)
from (
select distinct Bookings.PatientID as Patient ,DoctorID as Doctors
from Bookings ) as t
Group by Patient;
Utilisez Grouper par sur un tableau temporaire avec un patient et un médecin distincts
select Patient, count(*)
from (
select distinct Bookings.PatientID as Patient ,DoctorID as Doctors
from Bookings ) as t
Group by Patient;