mysql 查询null

来源:互联网 发布:全民神将翅膀进阶数据 编辑:程序博客网 时间:2024/06/16 09:46

mysql 查询null值

select * from table where colum  is null;

查询非null 有两种

select * from table where column != 'null';

select * from table where colum is not null;

0 0
原创粉丝点击