結果應該是這樣的:如何計算沒有患者預約的醫生?
Doctors_have_no_patients
Doctor2
Doctor3
Doctor5
表
Doctor table called `Doctors`
**DoctorID**
Doctor1
Doctor2
Doctor3
Doctor4
Doctor5
Booking table called `Bookings`
PatientID DoctorID Date
Patient1 Doctor1 etc.
Patient2 Doctor4 etc.
Patient3 Doctor1 etc.
我應該使用distinct
什麼?像:
select Bookings.DoctorID as Doctors_have_no_patients count(distinct(Bookings.PatientID))...
你需要養成[接受答案](http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work)這樣的習慣來幫助你解決你的問題的問題。您將獲得積分,其他人將被鼓勵幫助您。 –
您需要在您的'預訂'選擇中使用'distinct',就像您寫的@Tews –