本文主要是介绍TP6 数组查询 收集整理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
$where=[];$where[]=['publish_status','=',3]; //查询publish_status为3$where[]=['company_id','=',0]; //查询company_id 为0$where[]=['is_display','=',1]; //查询is_display 为1$where[]=['notice_type','<>',0];//查询 不等于0$where[]=['notice_type','null',''];//查询 is null$where[]=['notice_type','<>','null'];//查询 不等于null$where[]=['notice_type','not null',''];//查询 is not null$announcement =Db::name('notice')->fetchSql(true) ->where($where)->field('notice_id,notice_type')->order('release_time desc,notice_id desc')->select();echo $announcement;die;
这篇关于TP6 数组查询 收集整理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!