- 67浏览
- 2022-09-09
[NOT] NULL :
查询字段是否(不)是Null,例如:
where('name', null);
where('title','null');
where('name','not null');
如果你需要查询一个字段的值为字符串null或者not null,应该使用:
where('title','=', 'null');
where('name','=', 'not null');
$rs=Db::name('schoolstation')->where($where)->where('flid',null)->order('uid desc,id')->limit($limit)->page($page)->select();
$rs1=Db::name('schoolstation')->where($where)->where('flid', null)->select();
PHP MYSQL1.不为空
select * from table where id <> "";
select * from table where id != "";
2.为空
select * from table where id ="";
select * from table where isNull(id);
具体情况具体分析,如果字段是char或者varchar类型的,使用id=""可以的;
如果字段是int类型的,使用isNull会好些。
版权声明:
1、本文系转载,版权归原作者所有,旨在传递信息,不代表看本站的观点和立场。
2、本站仅提供信息发布平台,不承担相关法律责任。
3、若侵犯您的版权或隐私,请联系本站管理员删除。
4、本文由会员转载自互联网,如果您是文章原创作者,请联系本站注明您的版权信息。