`EXPLAIN`中哈希索引的输出是什么?

时间:2015-12-09 03:43:46

标签: sql postgresql

我正在分析SQL查询的性能。我正在使用EXPLAIN

我成功构建了哈希索引。但是,EXPLAIN的输出仍会显示Seq Scan。有什么不对?什么是EXPLAIN中假设的哈希索引输出?

xxx=# EXPLAIN ANALYZE select xxx from xxx where sex = 'Male';

                                                  QUERY PLAN                                                   
---------------------------------------------------------------------------------------------------------------
 Seq Scan on xxx  (cost=0.00..3971.00 rows=113637 width=4) (actual time=0.033..74.588 rows= 113637 loops=1)

0 个答案:

没有答案