Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: SQL Question
It will very much depend on your join conditions and the indexes you have
(or haven't) defined. Use the EXPLAIN PLAN functionality on individual SQL
statements to find out exactly what Oracle does with them.
--
Alan D. Mills
Rajesh M wrote in message <3621cd0c.0_at_news.euroconnect.dk>...
>Hi,
> select t1.col1, t2.col2, t3.col3
> from table1 t1, table2 t2, table3 t3
> where <join_condition>
>
>In which order does Oracle read data - I mean which table is read first. I
>guess the optimizer does a lot of work in a COST based env. How about RULE
>based environment ?
>
>
Received on Mon Oct 12 1998 - 05:50:55 CDT