Oracle数据库查看已添加的索引和创建索引

心已入冬 提交于 2019-12-16 03:33:06

/**

*查看目标表中已添加的索引

*

*/

--在数据库中查找表名

select from user_tables where  table_name like 'tablename%';

 

--查看该表的所有索引

select from all_indexes where table_name = 'tablename';

 

--查看该表的所有索引列

selectfrom all_ind_columns where table_name = 'tablename';

 

/*

*创建索引

*

*/

create index idx01 tablename(column);

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!