使用codeigniter查询选择属性设置为null的字段[重复]
Posted
技术标签:
【中文标题】使用codeigniter查询选择属性设置为null的字段[重复]【英文标题】:Select fields that have a property set to null with codeigniter query [duplicate] 【发布时间】:2021-07-08 17:54:29 【问题描述】:我正在尝试创建以下语句:
$this->db->where('uu.usuario_grupo_id is null');
但它不起作用
我也试过这个:
$this->db->where('uu.usuario_grupo_id =', null);
$this->db->where('uu.usuario_grupo_id =', 'null');
这些选项都不会从引用为 null 的字段中返回数据。
【问题讨论】:
***.com/a/13995884/2275490 【参考方案1】:试试这个
$this->db->where('uu.usuario_grupo_id IS NULL', null, false);
更多信息请看here
【讨论】:
***.com/a/2489460/2275490【参考方案2】:你可以这样做:
$this->db->where(array('uu.usuario_grupo_id' => NULL));
生产
WHERE `usuario_grupo_id` IS NULL
【讨论】:
***.com/a/13995884/2275490以上是关于使用codeigniter查询选择属性设置为null的字段[重复]的主要内容,如果未能解决你的问题,请参考以下文章