oracle索引总结 (javascript:void(0))
索引分类
1、B树索引
2、位图索引
3、单列索引和复合索引
4、函数索引
--创建
create index 索引名 on 表名(列名);
--组合创建
create index 索引名 on 表名(列名1,,列名2);
--删除
drop index 索引名;
--修改
索引分类
1、B树索引
2、位图索引
3、单列索引和复合索引
4、函数索引
--创建
create index 索引名 on 表名(列名);
--组合创建
create index 索引名 on 表名(列名1,,列名2);
--删除
drop index 索引名;
--修改