标签:table color rom logs span 数据 select tab sql数据库
查询mysql数据库表中字段为null的记录: select * 表名 where 字段名 is null 查询mysql数据库表中字段不为null的记录: select * 表名 where 字段名 is not null
例如:
select * from table where column is null; select * from table where column is not null;
标签:table color rom logs span 数据 select tab sql数据库
原文地址:http://www.cnblogs.com/mr-wuxiansheng/p/6713523.html