Mysql
 sql >> Database >  >> RDS >> Mysql

Come passare un array a dove condizione in CodeIgniter?

usa IN clausola come

$this->db->where('a.PreferenceID NOT IN (
    SELECT PreferenceParentID FROM '.$table.' 
    WHERE EntityID IN ('.implode(",", $array).'))',
    NULL, FALSE
);