【发布时间】:2018-08-27 17:09:37
【问题描述】:
我在尝试从我的数据库中删除多个非常相似但不完全相同的条目时遇到了一些麻烦。我看过这里和许多其他解决方案:
Delete Duplicate Records in PostgreSQL
How to delete duplicate rows with SQL?
每次我尝试从表中删除多个重复项时,该命令都会删除所有条目,而不仅仅是删除重复项。
这是带有重复样本的表格,我们应该只保留一个唯一的 hdrtime:
SELECT * from stdtextproducts where xxxid='DEN' AND nnnid='MTR' and hdrtime='270600';
cccid | datacrc | hdrtime | nnnid | site | wmoid | xxxid | bbbid | inserttime | product | reftime
-------+------------+---------+-------+------+--------+-------+-------+-------------------------+--------------------------------------------------------------------------+---------------
DEN | 3680361181 | 270600 | MTR | KDEN | SAUS70 | DEN | RRF | 2018-08-27 05:55:51.811 | SAUS70 KDEN 270600 RRF +| 1535349351811
| | | | | | | | | METAR KDEN 270553Z 22017KT 10SM BKN150 OVC200 23/06 A2991 RMK AO2 PK WND+|
| | | | | | | | | 22026/0456 SLP028 T02330056 10289 20222 58004 |
DEN | 1538417601 | 270600 | MTR | KDEN | SAUS70 | DEN | RRM | 2018-08-27 05:57:57.356 | SAUS70 KDEN 270600 RRM +| 1535349477356
| | | | | | | | | METAR KDEN 270553Z 22017KT 10SM BKN150 OVC200 23/06 A2991 RMK AO2 PK WND+|
| | | | | | | | | 22026/0456 SLP028 T02330056 10289 20222 58004 |
(2 rows)
我尝试了以下方法:
DELETE FROM stdtextproducts a USING (SELECT MIN(ctid) as ctid, hdrtime FROM stdtextproducts GROUP BY hdrtime HAVING COUNT(*) > 1) b WHERE a.hdrtime = b.hdrtime AND a.ctid <> b.ctid;
还有以下内容:
DELETE FROM stdtextproducts WHERE reftime NOT IN (SELECT MAX(reftime) FROM stdtextproducts GROUP BY hdrtime);
我应该期望只有一个条目会出现在列表中,但似乎所有条目都不再存在了。
SELECT * from stdtextproducts where xxxid='DEN' AND nnnid='MTR' and hdrtime='270600';
cccid | datacrc | hdrtime | nnnid | site | wmoid | xxxid | bbbid | inserttime | product | reftime
-------+---------+---------+-------+------+-------+-------+-------+------------+---------+---------
(0 rows)
我在这里错过了什么?
提前致谢。
【问题讨论】:
-
DELETE FROM stdtextproducts WHERE reftime NOT IN (SELECT MAX(reftime) FROM stdtextproducts b GROUP BY stdtxtproducts.hdrtime=b.hdrtime) 只是猜测
标签: sql postgresql