พอดีเขียนรายงาน 20 อันดับโรค เสร็จแล้วต้องการแยกเป็นจำนวนคนที่มารับบริการและจำนวนครั้งที่มา
แต่ปัญหาคือเขียนโค้ดได้แค่คนที่มารับบริการแต่เขียน จำนวนครั้งเพิ่มเข้าไปไม่ได้ ช่วยดูให้หน่อยจ้า
select v.pdx,count(v.pdx) as pdx_count, i.name as icdname
from vn_stat v
left outer join icd101 i on i.code=v.pdx
left outer join ovst o on o.vn=v.vn
where v.vstdate between "2011-01-01" and "2011-01-31" and v.pdx is not null and v.pdx<>"" and main_dep=011
group by v.pdx,i.name,v.hn
order by pdx_count desc
limit 20