table access by index rowid
INDEX RANGE SCAN这个执行计划的意思:
首先你的SQL过滤条件通过你的唯一索引检索到满足你查询条件的ROWID, 这个步骤叫INDEX RANGE SCAN
然后通过你查询的ROWID获取得到你要的行数据 这个步骤叫table access by index rowid详细说明参考我的BLOG

解决方案 »

  1.   

    1) INDEX RANGE SCAN
        顾名思义,根据范围对索引进行扫描,
    官档解释:When the Optimizer Uses Index Range Scans
    The optimizer uses a range scan when it finds one or more leading columns of an index specified in conditions, such as the following:•col1 = :b1•col1 < :b1•col1 > :b1•AND combination of the preceding conditions for leading columns in the index•col1 like 'ASD%' wild-card searches should not be in a leading position otherwise the condition col1 like '%ASD' does not result in a range scan.Range scans can use unique or non-unique indexes. Range scans avoid sorting when index columns constitute the ORDER BY/GROUP BY clause2)table access by index rowid
       单块读