show/hide this revision's text 2 added 347 characters in body
  1. Oracle-specific: When you write a query using the IN clause, you're telling the rule-based optimizer that you want the inner query to drive the outer query. When you write EXISTS and in a where clause, you're telling the optimizer that you want the outer query to be run first, using each value to fetch a value from the inner query. See "Difference between IN variants are logically equivalent and should result EXISTS in the same execution plansubqueries".
  2. It shouldn't change anything
  3. Probably.
  4. Alias declared inside subquery lives inside subquery. By the way, I don't think your example with 2 ANDed subqueries is valid SQL. Did you mean UNION instead of AND?
show/hide this revision's text 1
  1. EXISTS and IN variants are logically equivalent and should result in the same execution plan.
  2. It shouldn't change anything.
  3. Alias declared inside subquery lives inside subquery. By the way, I don't think your example with 2 ANDed subqueries is valid SQL. Did you mean UNION instead of AND?