ไม่ทราบว่าแต่ละแห่งใช้คำสั่งในการหาจำนวนแบบนี้หรือปล่าครับ เช่น
หาจำนวนผู้มารับบริการที่ ER
select count(e.vn),count(distinct o.hn)
from ovst o
left outer join er_regist e on e.vn=o.vn
where e.vstdate between "2009-10-01" and "2010-09-30"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
หาจำนวนผู้มารับบริการที่ opd
select count(v.vn),count(distinct o.hn)
from ovst o
left outer join vn_stat v on v.vn=o.vn
where v.vstdate between "2009-10-01" and "2010-09-30" and main_dep="010"