gdy zobaczysz dokumentację Możesz użyć $this->db->where()
z trzecim parametrem ustawionym na FALSE, aby nie zmieniać zapytania.Przykład:
$this->db->where('field is NOT NULL', NULL, FALSE);
Możesz też użyć niestandardowego ciągu zapytania, takiego jak ten
$where = "field is NOT NULL";
$this->db->where($where);
Twój kreator zapytań będzie wyglądał tak:
$this->db->select('*');
$this->db->where('field is NOT NULL', NULL, FALSE);
$this->db->get('donors');
LUB
$this->db->select('*');
$where = "field is NOT NULL";
$this->db->where($where);
$this->db->get('donors');