Codeigniter get_where с 'или' в массиве условий - PullRequest
0 голосов
/ 20 февраля 2019

Я пытаюсь получить значения 'yrlvl' с 11 или 1112 значениями, но я не могу получить его с этой строкой кода:

$this->db->order_by('id', 'DESC');
        $query = $this->db->get_where('subjects', array('strand' => 'GAS', 'yrlvl' => '11'or '1112'));
        return $query->result_array();

Я получаю только значение 1112, кто-то может помочь, пожалуйста.

1 Ответ

0 голосов
/ 20 февраля 2019

Вот несколько возможных решений:

Решение 1:

$this->db->select('*');
$this->db->from('subjects');
$this->db->where('strand', 'GAS');
$where = '(yrlvl = "11" or yrlvl = "1112")'; // make a OR statement by passing values here
$this->db->where($where);
$this->db->order_by('id', 'DESC');
$query = $this->db->get();
return $query->result_array();

Решение 2:

$this->db->select('*');
$this->db->from('subjects');
$this->db->where('strand', 'GAS');
$where = array('11', '1112'); // make an array of values for OR condition
$this->db->where_in('yrlvl', $where);
$this->db->order_by('id', 'DESC');
$query = $this->db->get();
return $query->result_array();
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...