我有桌子
test_A(
id1 number,
id2 number,
id3 number,
name varchar2(10),
create_dt date
)
我有两个索引和 一个复合索引indx1
。现在当我查询这个表时(id1,id2)
indx2(id3)
test_A
select * from test_A where id2=123 and
create_dt=(select max(create_dt) from test_A where test_A.id2=id2);
我为上面的 SQL 运行了解释计划,它正在使用“索引跳过扫描”。如果我使用索引快速完整扫描和所有成本在其上创建另一个索引,create_dt
并且 %cpu 显示高于使用索引跳过扫描的计划。在创建索引后,它也在使用索引范围扫描create_dt
。
我无法得出哪个应该可以的结论?我需要创建另一个索引create_dt
还是索引跳过扫描好?我相信索引跳过是 Oracle 运行多个索引范围扫描的功能?