SQL删除重复数据并只保留一条
程序员文章站
2022-03-06 21:26:22
...
1、首先我们来看下数据
这里我们可以看到数据共有五条,但实际数据只有两条,需要删除三条重复的。
2、接下来找出重复的数据
提示:只需把 字段替换即可
select * from "epc_geely_catalog_fourthly" a
where (a.carid,a.code) in (select carid,code from "epc_geely_catalog_fourthly" group by (carid,code) having count(*) > 1)
执行完上面的sql可以查询出重复的数据,这里共计四条,那么需要各删一条才对。
3、最终执行删除语句
以下sql的解释:删除重复的数据保留一条数据
delete from "epc_geely_catalog_fourthly" a
where (a.carid,a.code) in (select carid,code from "epc_geely_catalog_fourthly" group by (carid,code) having count(*) > 1)
and id not in (select min(id) from "epc_geely_catalog_fourthly" group by (carid,code) having count(*)>1)
执行这一步后可以看到受影响行数为2条,那么再次查询数据验证是否成功删除重复数据
4、补充
如果你表中没有id
作为唯一标示怎么办,生成唯一的随机数作为id即可
update "epc_geely_catalog_fourthly" set coordinates = ceil(random()*(1000000000000000-1)+1)
下一篇: 手持式、支持多技术多应用的以太网测试仪