$this->db->where('field is NOT NULL', NULL, FALSE);
या आप इस तरह से कस्टम क्वेरी स्ट्रिंग का उपयोग कर सकते हैं
$where = "field is NOT NULL";
$this->db->where($where);
तो आपका क्वेरी बिल्डर इस तरह दिखेगा:
$this->db->select('*');
$this->db->where('field is NOT NULL', NULL, FALSE);
$this->db->get('donors');
या
$this->db->select('*');
$where = "field is NOT NULL";
$this->db->where($where);
$this->db->get('donors');