摘要:
--根据剂型查找药品 select t.* from pha_com_drug t where t.dose_model='ORALSOL' ;-- 口服药水 select t.*,t.rowid from pha_com_drug t where t.dose_model='ORALTAB' ; -- 普通片剂 --药品特殊属性 select t.*,t.rowid fro... 阅读全文
摘要:
--通过his病历号查询emr中对应的患者ID select a.id, a.* from vhis_inpatientinfo a where a.PATIENT_NO='0001059171' --556457 --通过患者ID找出患者所有的病历集合ID select * from rcd_inpatient_record_set where inpatient_id='556457' -... 阅读全文