获取非空列不起作用的数据

时间:2017-02-06 11:58:32

标签: codeigniter activerecord

尝试通过CodeIgniter活动记录获取数据,其中字段为非空

  $this->db->select('tags');
  $this->db->where('tags IS NOT NULL', null, false);
  $this->db->from('users');
  $query = $this->db->get();  
  return $query->result();

不工作。

1 个答案:

答案 0 :(得分:0)

试试这可能会对你有帮助

 $this->db->select('tags');
 $this->db->where('tags IS NOT NULL');
 $this->db->from('users');
 $query = $this->db->get();  
 return $query->result();