我想从Codeigniter中具有多个ID的数据库中获取数据。
我要使用多个ID,而不是一个ID。
$q = $this->db->select('*')->from('data')->where('FILTER',$a)->get();
return $q->result();
实际上没有任何错误。
答案 0 :(得分:0)
尝试一下:
q = $this->db->select('*')->from('data')->where_in('FILTER',$a)->get();
return $q->result();