access 中空值的判断

来源:互联网 发布:企业软件防火墙排名 编辑:程序博客网 时间:2024/04/30 22:27

 -- access 使用isnull函数判断是否null值

delete from 表 where isnull(字段)


-- 如果空值是指0长度的, 则
delete from 表 where 字段=""