postgresql索引

来源:互联网 发布:手机淘宝关注链接 编辑:程序博客网 时间:2024/06/05 03:00

删除索引

drop index idx_t3_2;

创建索引

create index idx_t3_2 on test(ts);

查询表上的索引

select * from pg_indexes where tablename='test';  
原创粉丝点击