如何使用活動記錄更新多行?Codeigniter Active Record多更新
我的陣列
foreach($services as $service){
$this->service_batch[]=array(
'service_id'=>$service->service_id,
'service_count'=>$service->service_count,
'id_customer'=>$service->id_customer,
'id_section'=>$service->id_section);
}
當我更新表,我需要定義WHERE
條款(id_customer和id_section)在2個參數,但如果我用update_batch
,我只能指定一個參數。 如何在WHERE
條款中設置幾個參數?
在這個Q上的外觀和A - http://stackoverflow.com/questions/7426094/codeigniter-批量更新與多個條件 – Sharif
使用多個'where'?像'$ this-> db-> where('id_section',$ id_section);''this-> db-> where('id_customer',$ id_customer);' – Bora