赞
踩
select t.出院科室id,
count(t.病人id) 出院人数,
round(sum(t.住院天数) / count(t.病人id), 2) 平均住院日
from 病案主页 t
where t.出院日期 between
to_date('2020-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss') and
to_date('2023-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss')
and t.出院日期 is not null
group by t.出院科室id
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。