když uvidíte dokumentaci Můžete použít $this->db->where()
s třetím parametrem nastaveným na FALSE, aby váš dotaz neunikl. Příklad:
$this->db->where('field is NOT NULL', NULL, FALSE);
Nebo můžete použít vlastní řetězec dotazu, jako je tento
$where = "field is NOT NULL";
$this->db->where($where);
Váš tvůrce dotazů tedy bude vypadat takto:
$this->db->select('*');
$this->db->where('field is NOT NULL', NULL, FALSE);
$this->db->get('donors');
NEBO
$this->db->select('*');
$where = "field is NOT NULL";
$this->db->where($where);
$this->db->get('donors');