多语言展示
当前在线:362今日阅读:19今日分享:20

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

MySql 查询出某字段的值不为空或者为空的语句
工具/原料
1

MySql数据库

2

电脑

方法/步骤
1

1.不为空select * from table where id <> '';select * from table where id != '';

2

2.为空select * from table where id ='';select * from table where isNull(id);具体情况具体分析,如果字段是char或者varchar类型的,使用id=''可以的;如果字段是int类型的,使用isNull会好些。

推荐信息