0
列值,我需要一些價值減去的「stk_on_hand」字段中的值,並更新it.And這是我曾嘗試是更新中DB
$this->db->select('co_q_id,co_stk_id,co_req_quantity');
$this->db->from('customer_order');
$this->db->where('co_num',1);
$result=$this->db->get();
foreach($result->result() as $row){
$stkArray[] = array(
'stk_id'=>$row->co_stk_id,
'stk_on_hand' =>'stk_on_hand - ' . (int) $row->co_req_quantity
);
$this->db->update_batch('ms_stock_list',$stkArray, 'stk_id');
但經過執行本我」 m得到'stk_on_hand' as 。有人請幫忙。