Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Is inner Join faster than where clause ?

876094Apr 30 2013 — edited Apr 30 2013
For Example, Consider the below two queries and say me which query runs faster

Predicate in Inner Join on Clause:

select * from tabl1 abc join tabl2 def on (abc.column1=def.column1 and def.column3='abc')

Predicate in where Clause:

select * from tabl1 abc join tabl2 def on (abc.column1=def.column1)
where def.column3='abc'

Hint:

1. Column3 in tabl2 is non-indexed



Thanks in Advance
Thirumurugan Desinghu
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 28 2013
Added on Apr 30 2013
3 comments
3,526 views