当前位置: 首页 > article >正文

thinkphp如何查出值是null的布尔类型的值

exp 是用原生表达式查询的意思

$res=Db::table('tbcardlist')->where('qc_hr_wac_hadsend','exp','is null  or qc_hr_wac_hadsend=0')->order('ID','asc')->find();

查询值是null的字段的值时,要写 name is null 写 name = null 是查不出正确的数据的
要写 name is null

select top 10 * from tbcardlist where qc_hr_wac_hadsend is null or qc_hr_wac_hadsend=0 order by ID asc


select top 10 * from tbcardlist where qc_hr_wac_hadsend is null order by ID asc
select top 10 * from tbcardlist where qc_hr_wac_hadsend is not null order by ID asc

http://www.kler.cn/a/388190.html

相关文章:

  • 使用ookii-dialogs-wpf在WPF选择文件夹时能输入路径
  • ES6模块、CommonJS、AMD等不同的模块化实现。
  • 【Python特征工程系列】利用SHAP进行特征重要性分析-XGB模型为例(案例+源码)
  • 设计模式-七个基本原则之一-单一职责原则 + SpringBoot案例
  • uniapp vue里按钮上的文字,换行的方法,用rich-text
  • Selenium+Pytest自动化测试框架 ------ 禅道实战
  • 代码随想录算法训练营Day13 | 二叉树理论基础、递归遍历、迭代遍历、统一迭代、层序遍历
  • Android智能座驾,carlink场景截屏黑屏问题
  • Pycharm远程调试deepspeed!可用!
  • 前端三件套配合豆包MarsCode 实现钉钉官网动画
  • USB学习(上)
  • 「Mac玩转仓颉内测版1」入门篇1 - Cangjie环境的搭建
  • NLP之ASR之moonshine:moonshine的简介、安装和使用方法、案例应用之详细攻略
  • 如何设置定时关闭或启动整个docker而不是某个容器
  • GPIO 唤醒深度睡眠的esp32-c3
  • 如何找到养生生活视频素材?推荐几个优秀网站
  • 每日一题之成绩排序(进阶版)
  • springboot静态资源映射不生效问题
  • Node.js——fs模块-相对路径的bug与解决
  • 机器学习—多类
  • C++使用开源ConcurrentQueue库处理自定义业务数据类
  • MySQL的其他函数
  • Oracle简介、环境搭建和基础DML语句
  • 网络安全从入门到精通(特别篇IIl):应急响应之病毒蠕虫处置流程
  • 深度学习-张量相关
  • 解决 IntelliJ IDEA Maven 项目 JDK 版本自动变为 1.5 的问题