Hi,
I have a query like this:
select A.f1, IQ.f1,IQ.f2 from A,
(select id1,f1,f2 from xyz where...) IQ
where
A.id1=IQ.id1
Here we are using a inline view call "IQ".
I can write the same quesry using joins between A and xyz.
My question is: is there any performance difference between the two?
hen_pat
I have a query like this:
select A.f1, IQ.f1,IQ.f2 from A,
(select id1,f1,f2 from xyz where...) IQ
where
A.id1=IQ.id1
Here we are using a inline view call "IQ".
I can write the same quesry using joins between A and xyz.
My question is: is there any performance difference between the two?
hen_pat