How to use delete query in Codeigniter?
You can use $this->db->delete('admin', array('id' => 5));
this query to delete record according to condition
// DELETE FROM admin WHERE id = 5
BY Best Interview Question ON 13 Jan 2019