PG索引创建与Oracle的不同

前端之家收集整理的这篇文章主要介绍了PG索引创建与Oracle的不同前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
刚发现个有趣的地方,pg可以给同一表的相同列创建相同索引N次!太疯狂了!


postgres=# create table testind(id int);
CREATE TABLE
postgres=# create index on testind (id);
CREATE INDEX
postgres=# create index on testind (id);
CREATE INDEX
postgres=# create index on testind (id);
CREATE INDEX
postgres=# create index on testind (id);
CREATE INDEX
postgres=# \d+ testind
                       Table "public.testind"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 id     | integer |           | plain   |              | 
Indexes:
    "testind_id_idx" btree (id)
    "testind_id_idx1" btree (id)
    "testind_id_idx2" btree (id)
    "testind_id_idx3" btree (id)

postgres=# 

那么以后创建索引的时候,要注意不要重复执行了。
原文链接:https://www.f2er.com/oracle/210231.html

猜你在找的Oracle相关文章