Använd Gruppera efter över ett vikariebord med distinkt patient och läkare
select Patient, count(*)
from (
select distinct Bookings.PatientID as Patient ,DoctorID as Doctors
from Bookings ) as t
Group by Patient;
Använd Gruppera efter över ett vikariebord med distinkt patient och läkare
select Patient, count(*)
from (
select distinct Bookings.PatientID as Patient ,DoctorID as Doctors
from Bookings ) as t
Group by Patient;