一个能够对数据库进行联合唯一去重的SQL
delete from cve where id not in (select * from ((select min(id) from cve group by bug_number,versions,module_name)) tmp)