จากที่สังเกตรายงานอันดับโรคที่พบบ่อย ไม่ว่าจะเป็น OPD หรือ IPD จะดึงมาจากฟิลด์ pdx
ทำให้ตัวรายงานไม่ได้นำ dx0,dx1,dx2,dx3,dx4 มาคำนวณด้วย
แสดงว่ารายงานที่ได้ไม่ได้นับโรคร่วมเข้าไปด้วย
เช่น
select a.pdx,count(distinct a.hn) as hn_count,count(a.pdx) as pdx_count ,i.name as icdname
from vn_stat a
left outer join icd101 i on i.code=a.main_pdx
where a.vstdate between "2011-10-01 and "2011-10-31"
and a.pdx<>'''' and a.pdx is not null
group by a.pdx,i.name
order by pdx_count desc limit 20