hnsongbiao

1. 查询一张表里面索引 

select * from user_indexes where table_name=upper(\'bills\'); 

2. 查询被索引字段 

select * from user_ind_columns where index_name=(\'in_bills\'); 

3. 给某一字段创建索引 

create index in_bills on bills(account_id);

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
猜你喜欢
  • 2021-09-13
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案