我对oracle如何在视图上执行where子句感到怀疑。有人可以澄清这个疑问吗?例如,我有一个使用下面提到的SQL创建的视图。
create view simpleView as
select a.col1,b.col
from tableA a, tableB b
where a.col1 = b.col1
and a.col2 = b.col2;
在tableA(col1)上创建了一个索引。 我将以
执行SQLselect * from simpleView where col1 = 'literalValue';
我的疑问是