全部博文(2759)
发布时间:2013-12-19 12:11:19
B树索引中各种扫描方式比较:(1)索引范围扫描:INDEX RANGE SCAN查询时候指定索引条件,顺序读取索引找到数据,可能要回表,也可能不需要回表:drop table t purge;create table t as select * from dba_objects;update t set object_id=rownum;commit;create index idx_object_id on t.........【阅读全文】