PostgreSQL中主键索引为什么不能被查询利用到
1个回答
展开全部
A朋友的查询语句,其实涉及的是“等价谓词重写技术”和“索引的使用”2个话题。
看上面的表,PG是不支持IN谓词重写的。但是,name列上如果存在索引,则“可能”利用到索引。
如果有索引列,pg是可以支持利用索引进行优化的,但是对于like和IN谓词,“等价谓词重写”的优化技术,pg不支持”。
比如:
create table AA (a int unique, b varchar(10) unique, c int);
insert into aa values(1, 'a', 1);
insert into aa values(2, 'b', 2);
insert into aa values(3, 'c', 3);
explain select b from aa where b in ('a','ab');
可以得到如下的查询执行计划:
test=# explain select b from aa where b in ('a','ab');
QUERY PLAN
看上面的表,PG是不支持IN谓词重写的。但是,name列上如果存在索引,则“可能”利用到索引。
如果有索引列,pg是可以支持利用索引进行优化的,但是对于like和IN谓词,“等价谓词重写”的优化技术,pg不支持”。
比如:
create table AA (a int unique, b varchar(10) unique, c int);
insert into aa values(1, 'a', 1);
insert into aa values(2, 'b', 2);
insert into aa values(3, 'c', 3);
explain select b from aa where b in ('a','ab');
可以得到如下的查询执行计划:
test=# explain select b from aa where b in ('a','ab');
QUERY PLAN
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询