select patientID, count(1)
from dbo (nolock)
where admissiontime between '2020-01-31' and '2020-02-01'
patientID in (0, 1)
/*
0 means arthritis
1 means asthma
*/
因此,上述查询用于查找医院对哮喘和关节炎相关病例的请求的次数。
它被 放在一个组中patientID
,但这是否count(1)
意味着它计算所有的 PatientID?