直接上例子
create table t_1(a int,b text); insert into t_1 values (1,'aaa'),(2,'bbb'),(1,'bbb'); 这时,查看数据 select ctid,* from t_1; # select ctid,* from t_1; ctid | a | b -------+---+----- (0,1) | 1 | aaa (0,2) | 2 | bbb (0,3) | 1 | aaa (0,4) | 2 | bbb
这时如何删除重复的数据呢?
如下即可删除除最新的那一条的重复数据,
delete from t_1 where ctid not in (select max(ctid) from t_1 group by a,b having count(*) >1);
如果想要保留最开始的那条数据,把max换成min即可。
原文链接:https://www.f2er.com/postgresql/193996.html