postgresql里面implicit index和 explicit index 都是什么意思,有什么区别 谢谢!

兄弟们,请说下,postgresql里面implicit index和 explicit index 都是什么意思,有什么区别 谢谢!
最新回答
﹎回★忆﹎

2025-03-27 02:57:32

explicit index 指的是通过create index命令显式创建的索引

而implicit index指的是其他命令,主要是增加表约束而自动产生的索引。

比如你在新增一个主键和唯一键的时候都会自动产生一个关联该列的btree索引。

这两种所以在查询的时候起到的效果都是一样的,当然create index命令可以创建各种各样的非btree索引。

例:
create table test
(
id1 int primary key,
id2 int unique
)

将会隐式为id1和id2创建两个btree索引

假设postgresql没有自动创建索引的功能。

则上述命令相当于
create table test
(
id1 int primary key,
id2 int unique
)

create index name1 on test using btree (id1);
create index name2 on test using btree (id2);