cupsuccess

1.多列建立索引

SQL> create index dex_index2 on dex(sex,name);
Index created.

SQL>  select object_name,object_type from user_objects;

OBJECT_NAME                           OBJECT_TYPE
--------------------------------------------------------------------------------
DEX                                       TABLE
DEX_IDX1                                 INDEX
DEX_INDEX2                               INDEX

2.删除索引


DROP INDEX [schema.]indexname


 例如:

 sql> drop index pk_dept;
 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-02-01
  • 2022-12-23
  • 2021-11-06
  • 2021-10-22
  • 2021-11-06
猜你喜欢
  • 2021-11-13
  • 2021-10-11
  • 2022-12-23
  • 2022-03-15
  • 2022-12-23
相关资源
相似解决方案