Я пытаюсь создать следующее утверждение:
select * from donors where field is NOT NULL;
С codeigniter мой код выглядит так:
$where = ['field' => NULL];
$this->db->get_where('table', $where);
Подробнее здесь: https://stackoverflow.com/questions/330 ... odeigniter