sql删除表中某字段下为空的数据

delete from 表名 where 字段名 is null;

delete from 表名 where 字段名='';

你可能感兴趣的:(数据库)