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

oracle创建、删除索引等操作

时间:2020-02-20 18:46:30      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:创建索引   where   http   组合索引   create   链接   HERE   --   声明   

1、创建索引

create index 索引名 on 表名(列名);
1
2、删除索引

drop index 索引名;
1
3、创建组合索引

create index 索引名 on 表名(列名1,,列名2);
1
4、查询索引

--根据索引名,查询表索引字段
select * from user_ind_columns where index_name=‘索引名‘;
--根据表名,查询一张表的索引
select * from user_indexes where table_name=‘表名‘;
————————————————
版权声明:本文为CSDN博主「喜剧新人」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/farxix/article/details/80162437

oracle创建、删除索引等操作

标签:创建索引   where   http   组合索引   create   链接   HERE   --   声明   

原文地址:https://www.cnblogs.com/TengQiuli/p/12336833.html

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