lorsque vous voyez la documentation Vous pouvez utiliser $this->db->where()
avec le troisième paramètre défini sur FALSE pour ne pas échapper à votre requête.Exemple :
$this->db->where('field is NOT NULL', NULL, FALSE);
Ou vous pouvez utiliser une chaîne de requête personnalisée comme celle-ci
$where = "field is NOT NULL";
$this->db->where($where);
Ainsi, votre générateur de requêtes ressemblera à ceci :
$this->db->select('*');
$this->db->where('field is NOT NULL', NULL, FALSE);
$this->db->get('donors');
OU
$this->db->select('*');
$where = "field is NOT NULL";
$this->db->where($where);
$this->db->get('donors');