索引

1.B*Tree索引(二叉树)

一般B*Tree索引检索高基数数列

create index  索引名称 on 表名称 (列名称)

select index_name,index_type,table_owner,table_name,uniqueness,status from user_indexs;

2.图位索引

create bitmap index 索引名称 on 表名称(列名称)

3.删除索引

drop index 索引名称;、

原文地址:https://www.cnblogs.com/zuoyoufengyuan/p/8576571.html