postgresql里面implicit index和 explicit index 都是什么意思,有什么区别 谢谢!
1个回答
展开全部
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);
而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);
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询