标签:where 主键约束 span 主键 查看 gre postgres stat from
查看索引
select * from pg_indexes where tablename=‘tbname‘; 或者 select * from pg_statio_all_indexes where relname=‘tbname‘;
删除索引
DROP INDEX index;
index是要删除的索引名
注意 : 无法删除DBMS为主键约束和唯一约束自动创建的索引
标签:where 主键约束 span 主键 查看 gre postgres stat from
原文地址:https://www.cnblogs.com/toSeeMyDream/p/9552458.html