【发布时间】:2016-03-19 16:54:28
【问题描述】:
我有这两个表,想从 ms_author 中删除作者中不存在的所有作者。
author(160 万行)
+-------+-------------+------+-----+-------+
| Field | Type | Null | Key | index |
+-------+-------------+------+-----+-------+
| id | text | NO | PRI | true |
| name | text | YES | | |
+-------+-------------+------+-----+-------+
ms_author(1.2 亿行)
+-------+-------------+------+-----+-------+
| Field | Type | Null | Key | index |
+-------+-------------+------+-----+-------+
| id | text | NO | PRI | |
| name | text | YES | | true |
+-------+-------------+------+-----+-------+
这是我的查询:
DELETE
FROM ms_author AS m
WHERE m.name NOT IN
(SELECT a.name
FROM author AS a);
我尝试估计查询持续时间:~ 130 小时。
有没有更快的方法来实现这一点?
编辑:
EXPLAIN VERBOSE 输出
Delete on public.ms_author m (cost=0.00..2906498718724.75 rows=59946100 width=6)"
-> Seq Scan on public.ms_author m (cost=0.00..2906498718724.75 rows=59946100 width=6)"
Output: m.ctid"
Filter: (NOT (SubPlan 1))"
SubPlan 1"
-> Materialize (cost=0.00..44334.43 rows=1660295 width=15)"
Output: a.name"
-> Seq Scan on public.author a (cost=0.00..27925.95 rows=1660295 width=15)"
Output: a.name"
索引作者(name):
create index author_name on author(name);
索引 ms_author(name):
create index ms_author_name on ms_author(name);
【问题讨论】:
-
我认为使用
join或exists会更好 -
文本是索引字段吗?
-
我认为 danihp 的意思是,author.name 列是否被索引?
-
@jarlh:author.name 未编入索引,而 ms_author 目前已编入索引。
-
@a_horse_with_no_name:我认为“输出”是指表格表示,对吧?我是手工制作的。 ;)
标签: sql postgresql sql-delete postgresql-performance