至少如果我创建索引并生成一些随机数据:
CREATE INDEX ON employees (department_id);
INSERT INTO departments(department_name)
SELECT md5(random()::text) FROM generate_series(1, 1000);
INSERT INTO employees(employee_name, department_id)
SELECT md5(random()::text), floor(random() * 1000 + 1)::int FROM generate_series(1, 10000);
我可以看到索引被使用了:
> explain select * from employees where department_id = 100;
QUERY PLAN
------------------------------------------------------------------------------------------
Bitmap Heap Scan on employees (cost=4.35..32.11 rows=9 width=41)
Recheck Cond: (department_id = 100)
-> Bitmap Index Scan on employees_department_id_idx (cost=0.00..4.35 rows=9 width=0)
Index Cond: (department_id = 100)
(4 rows)
> explain select * from employees join departments on employees.department_id = departments.id where department_id = 100;
QUERY PLAN
------------------------------------------------------------------------------------------------
Nested Loop (cost=4.63..40.50 rows=9 width=78)
-> Index Scan using departments_pkey on departments (cost=0.28..8.29 rows=1 width=37)
Index Cond: (id = 100)
-> Bitmap Heap Scan on employees (cost=4.35..32.11 rows=9 width=41)
Recheck Cond: (department_id = 100)
-> Bitmap Index Scan on employees_department_id_idx (cost=0.00..4.35 rows=9 width=0)
Index Cond: (department_id = 100)
(7 rows)
因此,答案是:
对
,我可能应该总是在外键上创建一个索引。
我还注意到,由于数据很少(两个表中都有<10行),因此不使用索引(
Seq Scan
).