您的位置:首页 > 数据库 > MySQL

mysql 查询出某个字段的值不为空的语句

2016-06-02 15:35 295 查看
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会好些。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: