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

array per più condizioni where_in in codeigniter

function select_in($arr)
 {
        $this->db->select('*');
        $this->db->from('table');
        $this->db->where($arr);  // change here
        $query = $this->db->get();
        return $query;
    }

Se vuoi più dove In allora devi scriverlo due volte....Non è possibile in una singola istruzione.

$this->db->where_in('field1',$cond1);
$this->db->where_in('field2' , $cond2);

Nota:Where_in è simile a where id IN (1,2,3...) ma nel tuo caso stai facendo multiple where condition.