I am trying to create the following statement:
$this->db->where('uu.usuario_grupo_id is null');
But it doesn't work
I also tried this:
$this->db->where('uu.usuario_grupo_id =', null);
$this->db->where('uu.usuario_grupo_id =', 'null');
none of these options returns data from fields referenced as null.