mysql 查询值为null的数据: is null 的使用

mysql在开发过程中遇到的问题整理:

查询id字段为空的数据:

select * from temp where id  is null;

查询id字段不为空的数据:

select * from temp where id  is  not  null;

你可能感兴趣的:(Mysql)