尝试通过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();
不工作。
答案 0 :(得分:0)
试试这可能会对你有帮助
$this->db->select('tags');
$this->db->where('tags IS NOT NULL');
$this->db->from('users');
$query = $this->db->get();
return $query->result();