เพิ่ม code สีแดงครับ
แล้วรายงานเพิ่มเขตข้อมูล unitcost เข้าไปครับ
select concat(b.name,' ',strength) as drugname,sum(qty),units,b.unitprice ,sum(qty*b.unitprice) as total,f.cur_dep,department,b.unitcost
from opitemrece a
left outer join drugitems b on a.icode=b.icode
left outer join ovst f on f.vn = a.vn
left outer join kskdepartment c on f.cur_dep=c.depcode
where a.icode like'1%'
and qty>=1
and f.vstdate between '2008-04-01' and '2008-04-30'
group by b.name,strength,units,b.unitprice,a.dep_code,department
order by f.cur_dep,b.name