ThinkPHP5.1 查询空或非空字段数据

 2024-09-11  阅读 426  评论 0  点赞 0

摘要:ThinkPHP5.1 查询空或非空字段数据 查询归属人是空的条件,并按照id的降序排列一页显示15条,用whereNull

ThinkPHP5.1 查询空或非空字段数据

ThinkPHP5.1 查询空或非空字段数据

ThinkPHP5.1

查询归属人是空的条件,并按照id的降序排列一页显示15条,用whereNull

db('table')->whereNull('belong')->order('id','desc')->paginate(15);

查询归属人不为空的条件,并按照id的降序排列一页显示15条,whereNotNull

db('table')->whereNotNull('belong')->order('id','desc')->paginate(15);

 

查询归属人是空的条件,并按照id的降序排列一页显示15条,用not null

db('alldata')->where('belong','not null')->order('id','desc')->paginate(15);

查询归属人是空的条件,并按照id的降序排列一页显示15条,用null

db('alldata')->where('belong','null')->order('id','desc')->paginate(15);

 

此两种方法适用tp5以前

$where['belong']  = array('exp',' is NULL');

$where['belong']  = array('exp',' not null');

 

ThinkPHP5.1

 

MySQL查找空字段或不为空的字段

MySQL查询空字段数据:

 

select * from table where id = '';

select * from table where isnull(age);

MySQL查询不为空字段的数据(非空数据):

 

select * from table where age <> '';

select * from table where age != '';

下一篇:没有了
标签:thinkphp

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容185
  • 积分66666
  • 金币66666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0260秒, 内存占用1.92 MB, 访问数据库27次

冀ICP备19034377号