我正在使用 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()
条件。有可能吗?
尝试使用 -
$this->db->where_in('brand_id',$cond);
$this->db->where_in('field' , $cond_new);