PostgreSQL 查询创建删除索引

Posted personblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL 查询创建删除索引相关的知识,希望对你有一定的参考价值。

--查询索引
select * from pg_indexes where tablename=tab1;   

--创建索引  tab1_bill_code_index  为索引名,
create index  tab1_bill_code_index  on  "db1".tab1(bill_code);

--删除索引
drop index tab1_bill_code_index  ;

 

以上是关于PostgreSQL 查询创建删除索引的主要内容,如果未能解决你的问题,请参考以下文章

如何在 python 脚本中格式化 postgreSQL 查询以获得更好的可读性?

尽管存在相关索引,但 PostgreSQL 查询速度很慢

如何在 postgresql 中强制删除索引关系?

删除 PostgreSQL 中索引的唯一性

PostgreSQL:创建索引以快速区分 NULL 和非 NULL 值

PostgreSQL:未使用的索引导致查询性能不佳?