我正在使用codeigniter活动记录查询。
function select_in($table,$cond)
{
$this->db->select('*');
$this->db->from($table);
$this->db->where_in('brand_id',$cond);
$query = $this->db->get();
//echo $this->db->last_query(); exit;
return $query;
}
我需要在此查询中传递另一个where_in
条件。这可能吗?
答案 0 :(得分:1)
尝试 -
$this->db->where_in('brand_id',$cond);
$this->db->where_in('field' , $cond_new);