首页 > 数据库 > MySQL > 正文

mysql怎样查询不为空的字段

2024-07-24 12:33:04
字体:
来源:转载
供稿:网友
  mysql怎么查询不为空的字段
  1、查询不为空
 
  select * from table where id <> "";
  select * from table where id != "";
 
  2、查询为空
 
  select * from table where id ="";
  select * from table where isNull(id);
  如果字段是char或者varchar类型的,使用id=""可以的;如果字段是int类型的,使用isNull会好些。
 
  到此,相信大家对“mysql如何查询不为空的字段”有了更深的了解,不妨来实际操作一番吧!

(编辑:武林网)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表