Alternative to NOT IN clause
1) What are the alternatives for the below query for better performance
2) Does NOT IN for sub-query always give poor performance?
delete from T1
where (col1, col2)
NOT IN
( select col1, col2 from T2
union
select col1, col2 from T3
)
Thanks.
Edited by: rajugopalli on Aug 18, 2011 10:29 PM