简体   繁体   English

为什么Postgres不使用索引?

[英]Why isn't Postgres using the index?

I have a table with an integer column called account_id . 我有一个名为account_id的整数列的表。 I have an index on that column. 我有一个关于该列的索引。

But seems Postgres doesn't want to use my index: 但似乎Postgres不想使用我的索引:

EXPLAIN ANALYZE SELECT "invoices".* FROM "invoices" WHERE "invoices"."account_id" = 1;

 Seq Scan on invoices  (cost=0.00..6504.61 rows=117654 width=186) (actual time=0.021..33.943 rows=118027 loops=1)
   Filter: (account_id = 1)
   Rows Removed by Filter: 51462
 Total runtime: 39.917 ms
(4 rows)

Any idea why that would be? 知道为什么会这样吗?

Because of: 因为:

Seq Scan on invoices  (...) (actual ... rows=118027 <— this
   Filter: (account_id = 1)
   Rows Removed by Filter: 51462                    <— vs this
 Total runtime: 39.917 ms

You're selecting so many rows that it's cheaper to read the entire table. 你选择了这么多行,阅读整个表会更便宜。

Related earlier questions and answers from today for further reading: 相关的早期问题和答案从今天开始进一步阅读:

(See also Craig's longer answer on the second one for additional notes on indexes subtleties.) (另请参阅Craig关于第二个问题的更长答案,以获取有关索引细微差别的其他说明。)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM