$data = array(
'recruiter_id'=>REPLACE(recruiter_id,201812101140,'')
);
$where = "jid='".$this->input->post('jid')."'";
$this->db->where($where);
$this->db->update('job_registration',$data);
echo $this->db->last_query();
I have recruiter ids like 2018121011430, 201812101140, 201812101141
. Now, I want to remove 201812101140
using an update query. Here is my query but it doesn't work. How can I remove 201812101140
from the column recruiter_id
?