พอดีจะลองหัดเขียนรายงานโรคที่มีค่าใช้จ่ายสูง โดยตัดรหัส z ออกไปครับ ไม่รู้ว่าถูกไหมแต่ยังไม่ได้ตัดรหัส z ออกน่ะครับ
select a.pdx,count(a.pdx),sum(a.income),i.name
from vn_stat a
left outer join icd101 i on i.code=a.pdx
where a.vstdate between"2009-03-01" and"2009-03-28"
and a.pdx<>'' and a.pdx is not null
group by a.pdx
order by a.income desc
limit 20