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);