我试过
$this->db->where('fieldname IS NULL', false);
这给了我
WHERE `fieldname` IS NULL 0
导致错误。 无法理解0的来源。有人可以向我解释一下吗?感谢
答案 0 :(得分:2)
您的第二个参数应为NULL,而不是FALSE。
答案 1 :(得分:0)
你应该尝试这样
$this->db->where('fieldname =','');
或者
$this->db->where('fieldname IS NULL');