Get the id of the last updated record

后端 未结 6 1331
天涯浪人
天涯浪人 2021-01-23 02:51

I am able to get the last inserted id using $this->db->insert_id(); in codeigniter, is there any way that I can get the id of the last updated record? I tried

6条回答
  •  旧时难觅i
    2021-01-23 03:17

    Return the id which your using in where clause for update

    function Update($data,$id){
            $this->db->where('id', $id);
            $this->db->update('update_tbl',$data);
            return $id; 
        }
    

提交回复
热议问题