Use and Order Advanced Condition Operators
Use the following order of precedence for the operators you can select when creating an advanced condition.
| Order | Operator | Use |
|---|---|---|
|
1 |
|
Use with all fields available in an advanced condition. |
|
2 |
|
Use with all fields available in an advanced condition. |
|
3 |
|
Use between queries (AC Library Attributes) |
|
4 |
|
Use between queries (AC Library Attributes) |
|
5 |
|
Use between queries (AC Library Attributes) |
Using an INTERSECT, MINUS, or UNION operator results in the creation of two separate select clauses. Therefore, use these operators between different queries.
Be sure to use correct PL/SQL syntax:
SELECTtable1.common_columnFROMTable1, table2, table3WHERETable1.column2 = table2.column2ANDTable2.column3 = table3.column3INTERSECTSELECTTable4.common_columnFROMTable4, table5, table6WHERETable4.column2 = table5.column2ANDTable5.column3 = table6.column3
For more information, see: