php ci get where query code example

Example 1: where_in codeigniter

$this->db->select('ae_users.employee_id, ae_users.emp_name, ae_users.emp_name2, ae_users.emp_name3');
		$this->db->from('ae_users');                
		$this->db->where_in('ae_users.employee_id',$employee_ids);
     
		$query =$this->db->get();
             
		if ($query->num_rows()) {
			return $query->result_array();
		} else {
			return 0;
		}

Example 2: codeigniter 3 update

$data = array(
        'title' => $title,
        'name' => $name,
        'date' => $date
);

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