superming
/*<br>*
*查看目标表中已添加的索引
*
*/
--在数据库中查找表名
select * from user_tables where  table_name like \'tablename%\';
 
--查看该表的所有索引
select * from all_indexes where table_name = \'tablename\';
 
--查看该表的所有索引列
select* from all_ind_columns where table_name = \'tablename\';
 
/*
*创建索引
*
*/
create index idx01 tablename(column);

分类:

技术点:

相关文章:

  • 2021-08-31
  • 2021-11-06
  • 2021-07-06
  • 2021-06-17
  • 2021-04-22
  • 2020-02-25
  • 2019-07-24
猜你喜欢
  • 2021-12-15
  • 2021-05-15
  • 2021-08-28
  • 2021-08-28
  • 2021-12-31
  • 2021-06-13
  • 2020-02-26
相关资源
相似解决方案