อันนี้ script ของ opd ครับ
select v.hn, concat(p.pname,p.fname,' ',p.lname) as ptname, count(v.vn)
from vn_stat v, patient p
where v.hn=p.hn
and v.vstdate between '2010-01-01' and '2010-01-31'
group by v.hn
order by count(v.vn) desc
limit 50
อันนี้ script ของ ipd ครับ
select a.hn, concat(p.pname,p.fname,' ',p.lname) as ptname, count(a.an)
from an_stat a, patient p
where a.hn=p.hn
and a.regdate between '2010-01-01' and '2010-01-31'
group by a.hn
order by count(a.hn) desc
limit 50