两视图用union all后不走索引,但是用select再包一层查询又走索引原因 两视图用union all后不走索引,但是用select再包一层查询又走索引原因?
测试(不走索引):
select * from v_gisotermjump where atermtype =86 and aconnectorid = 3814606
union all
select * from v_gisotermjump where ztermtype =86 and zconnectorid = 3814606;
测试(走索引):
select * from (
select * from v_gisotermjump where atermtype =86 and aconnectorid = 3814606
union all
select * from v_gisotermjump where ztermtype =86 and zconnectorid = 3814606);
一上脚本结果查看执行计划得出。请教高手给出原因,谢谢!
unin索引
分享到:
------解决方案-------------------- 为什么我本地 两个视图 UNION ALL 走索引呢。。你的数据时什么版本的。 ------解决方案-------------------- oracle10是基于成本的优化,如果你表中数据量很小,走索引与否的成本消耗很类似,在某个点上这种情况是正常的 ------解决方案-------------------- 索引是在哪些列上?