--建立索引
create index index_bankseq on bank(bankseq);
--drop index bankseq;

--查看索引
select status,T.* from user_indexes T where table_name='BANK';

--查看执行计划(看索引是否被执行)
explain plan for select * from bank where bankseq='1';
select * From Table(dbms_xplan.display());

相关文章:

  • 2022-01-21
  • 2022-12-23
  • 2021-09-16
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案