运行下列SQL语句就可以null全换成空字符:update 需要更新的表名 set [需要处理的字段名]='' where [需要处理的字段名] is null;例如已经打开了ado连接对象cndim strSql as stringstrSql="update table1 set [col1]='' where [col1] is null;"cn.Execute strSql '执行sql语句
不难,用查找替换就可以,用更新查询也可以。