0
SELECT patientname, patientID
 (CASE WHEN patientid is not null THEN 'yes'
             WHEN patientid is null then 'No'    
        END) as diagnosedornot

FROM database
where diagnosetime between '2020-09-03' and '2020-09-04'

有没有办法可以重写此查询以仅显示患者 ID 不为空,我的意思是显示仅显示患者 ID 不为空的数据。最好的方法是什么,用例?或者这甚至可能吗?

我想优化这个查询。

4

1 回答 1

2

使用该where子句过滤非null patientids 的行:

select patientname
from database
where 
    diagnosetime between '2020-09-03' and '2020-09-04' 
    and patientid is not null
于 2020-09-10T23:42:52.870 回答