首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

如何查询mysql不为空的字段

2024-08-01 来源:华佗小知识

查询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会好些。

推荐:

显示全文