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 查询以获得更好的可读性?