📌  相关文章
📜  使用 where 条件更新 codeigniter 中的查询 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:39.388000             🧑  作者: Mango

代码示例1
public function update_row(){
        
        $update_rows = array('field-name' => 'field-data',);
        $this->db->where('id', 1 );
        $this->db->update('table-name', $update_rows);    

    }