sqlserver中怎么查询字段为空的记录

如题所述

第1个回答  2017-08-09
select * from 表名 where 字段名 is null
第2个回答  2017-08-09
select * from 表格名 where 字段名 is null ;

相似回答