美文网首页
Oracle如何创建索引、删除索引、查询索引

Oracle如何创建索引、删除索引、查询索引

作者: Mr丶Tony | 来源:发表于2019-10-23 10:21 被阅读0次

1、创建单一索引

create index 索引名称 on 表名(列名);

2、创建复合索引

create index 索引名称 on 表名(列名1,列名2);

3、删除索引

drop index 索引名称;

4、查询表的索引

select * from all_indexes where table_name = '表名称';

5、查询表的索引列

select* from all_ind_columns where table_name = '表名称';

相关文章

网友评论

      本文标题:Oracle如何创建索引、删除索引、查询索引

      本文链接:https://www.haomeiwen.com/subject/tmmhvctx.html