ผมทำตามที่ท่าน nuttavut บอกแล้วครับแต่ยังไม่ได้รบกวนช่วยแนะนำให้ละเอียดกว่านี้หน่อยยนะครับ อ.อ๊อด
ใช้คำสั่ง
insert into operation_stock select icode from s_drugitems
จากนั้นลองตรวจสอบ Table s_drugitems ในส่วนของ field istatus จะต้องเป็น 'Y'
เพราะในการค้นหารายการยา/เวชภัณฑ์ส่วนนี้โปรแกรมจะใช้ SQL โดยมีเงื่อนไงดังตัวอย่างแบบนี้
select distinct( concat(di.name,' ',di.strength,' ',di.units) ) as name,di.drugnote as hint
from s_drugitems di
where (di.name like '%AMOX%' or di.drugnote like '%amox%')
and di.icode in (
select icode from operation_stock) and
di.istatus='Y' order by name