mysql 查询某个字段不为空(附thinkphp写法)

来源:csdn博客 分类: 文章浏览史 发布时间:2020-11-29 15:09:47 最后更新:2020-11-29 浏览:980
转载声明:
本文为摘录自“csdn博客”,版权归原作者所有。
温馨提示:
为了更好的体验,请点击原文链接进行浏览
摘录时间:
2020-11-29 15:09:47

1.如果要写某个字段不为空,mysql的表达式应为:

假设字段为:door_open_api_key,

那么:door_open_api_key is  not null AND door_open_api_key != ""


2. thinkphp中应写为

        $Reserve_system = M('Reserve_system');
        $where = array();
        $where['door_open_api_key'] = array('exp',' is not null AND door_open_api_key != ""');
        $reserve_systems = $Reserve_system->where($where)->select();

php技术微信