- 最后登录
- 2014-3-28
- 在线时间
- 118 小时
- 威望
- 5
- 金钱
- 394
- 注册时间
- 2011-10-12
- 阅读权限
- 100
- 帖子
- 110
- 精华
- 0
- 积分
- 5
- UID
- 10
|
2#
发表于 2012-8-21 22:22:12
看一下performance tuning guide 中的Understanding Index Performance部分,应该能稍微了解一下索引:
A composite index contains multiple key columns. Composite indexes can provide additional advantages over single-column indexes:
•Improved selectivity
Sometimes you can combine two or more columns or expressions, each with poor selectivity, to form a composite index with higher selectivity.
•Reduced I/O
If all columns selected by a query are in a composite index, then Oracle Database can return these values from the index without accessing the table. |
|