关键词搜索

源码搜索 ×
×

php mysql查找字段空、不为空的方法总结

发布2018-01-19浏览2532次

详情内容

  1. 1、不为空
  2. Select * From table Where id<>''
  3. Select * From table Where id!=''
  4. 2、为空
  5. Select * From table Where id=''
  6. Select * From table Where IS NULL(id)
  7. 具体情况具体分析,如果字段是char和varchar型用 id=''可以;如果是int型用 IS NULL好些
  1. 在mysql中,查询某字段为空时,切记不可用 = null,
  2. 而是 is null,不为空则是 is not null
  3. www.2cto.com
  4. select * from table where column is null;
  5. select * from table where column is not null;


相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载