tonyzt

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 = \'表名称\';

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-11-13
  • 2022-02-26
  • 2021-09-02
  • 2021-05-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-13
  • 2021-07-04
  • 2022-12-23
  • 2021-04-17
  • 2022-12-23
相关资源
相似解决方案