码迷,mamicode.com
首页 > 数据库 > 详细

PostgreSQL 查询、创建、删除索引

时间:2019-08-17 12:53:01      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:删除索引   create   creat   code   删除   color   span   div   class   

--查询索引
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 查询、创建、删除索引

标签:删除索引   create   creat   code   删除   color   span   div   class   

原文地址:https://www.cnblogs.com/personblog/p/11368104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!