when i use $this->db->where('field !=', 1);
i want to select all entries where field is not 1. so that means here 0 or NULL however in codeigniter he doesn't select it where the entry is NULL (default value).
how to solve this without changing the database?
dave