|
2
|
|
edited Oct 9 '08 at 19:56
|
- 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".
- It shouldn't change anything
- Probably.
- 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?
|
|
|
|
1
|
|
answered Oct 9 '08 at 19:47
|
- EXISTS and IN variants are logically equivalent and should result in the same execution plan.
- It shouldn't change anything.
- 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?
|
|
|