Condition | Description |
Simple comparison | Specifies a comparison with expressions or subquery results. = , !=, <>, < , >, <=, <= |
Group comparison | Specifies a comparison with any or all members in a list or subquery. [= , !=, <>, < , >, <=, <=] [ANY, ALL, SOME] |
Membership | Tests for membership in a list or subquery. [NOT] IN |
Range | Tests for inclusion in a range. [NOT] BETWEEN |
NULL | Tests for nulls. IS NULL, IS NOT NULL |
EXISTS | Tests for existence of rows in a subquery. [NOT] EXISTS |
LIKE | Specifies a test involving pattern matching. [NOT] LIKE |
Compound | Specifies a combination of other conditions. CONDITION [AND/OR] CONDITION |