Codeigniter Active Record使用多个主键选择多行

时间:2011-12-28 04:57:02

标签: php codeigniter activerecord

我在动态返回多行时遇到问题。

我有一个活动记录查询,需要从同一个表中返回多行。

//this will be a dynamic array of ids 
$array = array('01','02','03');

//i need to have other where conditionals as well
$cond['userlevel'] = 5;

//then add the array of ids to the conditionals array        
$cond['id'] = implode(',',$array);       

//then build the active record query
$q = $this->db->select($col->where($cond);

它似乎只返回ids数组中的第一项。

2 个答案:

答案 0 :(得分:0)

尝试类似

的内容
"SELECT * FROM table_name WHERE userlevel IN(?,?,?,?)", array(0,1,2,3);

答案 1 :(得分:0)

请试试这个,它会对你有帮助。

$this->db->select('*');
$this->db->from('table_name');
$this->db->where_in('column_name',array(0,1,2,3));

注意: - 确保where_in数组值不应为空,否则会出现MySQL错误。