Get the id of the last updated record

后端 未结 6 1330
天涯浪人
天涯浪人 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条回答
  •  终归单人心
    2021-01-23 03:32

    Here is how you can do it shortest

    $where  =   array('vrnoa'=>$data['vrnoa'], 'etype' => 'sale');
    

    //Update the record

    $this->db->where($where);
    $this->db->update('StockMain',$data);
    

    //Get the record

    $this->db->where($where);
    return $this->db->get('StockMain')->row()->stid;
    

提交回复
热议问题