where_in() 可以在单个 CodeIgniter 活动记录中多次调用吗?

问题描述 投票:0回答:1

我正在使用 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()
条件。有可能吗?

php codeigniter activerecord query-builder where-in
1个回答
1
投票

尝试使用 -

$this->db->where_in('brand_id',$cond);
$this->db->where_in('field' , $cond_new);
© www.soinside.com 2019 - 2024. All rights reserved.