美文网首页
2019-08-15:根据病种选病例

2019-08-15:根据病种选病例

作者: AI_Finance | 来源:发表于2019-08-15 13:50 被阅读0次
select distinct part3.*, ppd.disease_name from
(
    select part1.uuid, part1.record_name, part1.attribute_name, part1.progress_content, part2.patient_age, part2.patient_age_type, 
           part2.patient_gender, part2.inpatient_department from 
    (
        select uuid, record_name, attribute_name, progress_content from
            (
                select concat(customer_id,'-',record_id) as uuid, record_type_id, msda.attribute_name, progress_content
                from pt_patient_progress ppp
                join ms_dictionary_attribute msda
                on ppp.dictionary_attribute_id = msda.id where customer_id=1285
            ) result_attr
         join ms_system_record_type msr
         on result_attr.record_type_id = msr.record_type
         where record_name in ("入院记录", "出院小结", "首次病程")
     ) as part1
    join 
    (
        select uuid, patient_age, patient_age_type, patient_gender, inpatient_department  
        from hmcdss2_xmzs_0520.mt_patient_record 
    --             where inpatient_department like "%呼吸%" 
    ) as part2
    on  part1.uuid=part2.uuid
) as part3
join pt_patient_disease as ppd
on concat(ppd.customer_id, "-", record_id)=part3.uuid
where ppd.profile_part_type=22 and ppd.record_type_id=1 and ppd.dictionary_attribute_id=86 and ppd.disease_name="新生儿湿肺"

相关文章

网友评论

      本文标题:2019-08-15:根据病种选病例

      本文链接:https://www.haomeiwen.com/subject/kfkzjctx.html