oracle-索引-使用总结

 oracle索引使用

举例

通常:create index 索引名 on tbname( 列名)

倒序:create index 索引名_desc on tbname( 列名)

函数:create index 索引名 on tbname( lower(列名))

位图:create bitmap index 索引名 on tbname( 列名)

区别 

删除索引

 drop index 索引名

发布了463 篇原创文章 · 获赞 38 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/xie__jin__cheng/article/details/102936240