有两个表 tbldoctor 和 tblschedule
医生
doc_id(PK) docMrId docfname
1 22 manish
2 23 rahul
3 22 ashish
4 24 ahemad
5 22 narendra
6 22 akshat
tblschedule
doctor_id(FK) mr_id schedule_date
1 22 2012-06-12
1 22 2012-06-13
3 22 2012-06-14
3 22 2012-06-14
4 24 2012-06-12
4 24 2012-06-12
5 22 2012-06-14
5 22 2012-06-15
5 22 2012-06-12
我想要的是所有医生的列表和在 tblschedule 表中重复的特定医生的计数,其中提供了 schedule_date 参数和 mr_id 我们假设 mr_id =22 和 schedule_date 在 2012-06-01 到 2012-06-31 之间
输出应该看起来像
doc_id docfname count
1 manish 2
3 rahul 2
5 narendra 3
6 akshat 0