Hi,
I would just like to know if the subquery of IN / EXISTS is RE-computed for every row in the outer query when the sub-query is independent of the outer. If this is so, would there still be much of a performance issue between this and JOIN.
Two 10x10 tables using join cross product would be 100 rows scanned, where as IN / EXISTS computed for each outer row is also 100 rows searched. Although there is a difference what do other people know.