Skip to Main Content

SQL & PL/SQL

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!

what is HASH JOIN ANTI

user517698Nov 21 2006 — edited Nov 21 2006

Hi ,

From my explain plan i see HASH JOIN ANTI .

what arises to this join in my select query ?

select * from ( select * from tbl1 where not exists (select * from tbl2 where tbl1.col1 = tbl2.col1) jj
where not exist (select * from tbl3 where  jj.col1 = tbl3.col1))

i think it's the dbl not exists that cause this hash join anti
but what impact will this type of join has on my query performance ?

tks & rdgs

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 19 2006
Added on Nov 21 2006
4 comments
1,854 views