select count(0) from tps_uw_detail where trim(coreContNo)=''###1736
select count(0) from tps_uw_detail where coreContNo is null###735
select count(0) from tps_uw_detail where (coreContNo is null or trim(coreContNo)='')##2471
=''就是存的空字符串;is null 就是默认的。
由于是后来新加的字段,默认为null,所以历史数据都为null。表中加上这个字段后,再落库的数据就是空字符串了。
根据自己的需求选用脚本,第三个是适合我的。
access数据库中查询条件不为空,应在“查询设计”中,“条件”中输入“Is Not Null”。
以access2013为示例,步骤如下:
1、运行access2013,创建一个示例用”教职员“表。添加几条数据,其中”姓氏“、”名字“包含有空值。
2、点击“创建”选项卡,点击“查询设计”。
3、添加“教职员”表。
4、选择“姓氏”字段,
5、点击“条件”,输入“Is Not Null”,注意输入法应为英语,并且无需引号。
6、为了对比,再添加一个“名字“字段,不添加条件。
7、点击“运行”按钮,运行这个查询。
8、可以看到,”姓氏“字段中没有空值,“名字”字段中包含了空值。
非空值数据: select count(*) from YourTable where YourColumnName is not null。
空值数据: select count(*) from YourTable where YourColumnName is null或者字段 is null 或者 isnull(字段,'')='' 一般用后者 可以把 null 和 '' 都能查。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)