ดูรายการใบสั่งยาที่มีรายการยามากกว่า 10 รายการ
select o2.cc,o.* from opitemrece o inner join
(select x.vn,count(x.icode) as cc from opitemrece x
inner join drugitems d on x.icode=d.icode
where x.an is null and x.vstdate between '2010-10-01' and '2010-10-31'
group by x.vn having cc > 10 ) o2 on o.vn=o2.vn