oracle索引使用

举例
通常:create index 索引名 on tbname( 列名)
倒序:create index 索引名_desc on tbname( 列名)
函数:create index 索引名 on tbname( lower(列名))
位图:create bitmap index 索引名 on tbname( 列名)
区别

删除索引
drop index 索引名
本文详细介绍了在Oracle数据库中创建各种类型索引的方法,包括普通索引、倒序索引、函数索引和位图索引,并提供了具体的SQL语句示例。此外,还讲解了如何通过SQL命令删除索引。
oracle索引使用

举例
通常:create index 索引名 on tbname( 列名)
倒序:create index 索引名_desc on tbname( 列名)
函数:create index 索引名 on tbname( lower(列名))
位图:create bitmap index 索引名 on tbname( 列名)
区别

删除索引
drop index 索引名

被折叠的 条评论
为什么被折叠?