select col from 表名 where 字段 is nullnull 不是用等于的,是用is关键字的
当字段为null 的时候不能用 字段=NULL 而是 字段 is null
假设你要的INT字断名是COL则select col from 表名 where NVL(col,0)=0;
有可能这个字段不是null值,用其他字段筛把这个值更新成想要的值
where 字段 is null