>>-expression----+- = --------+-----expression----------------->< | (1) | +- <> -------+ +- < --------+ +- > --------+ | (1) | +- <= -------+ | (1) | '- >= -------'
Notes:
A basic predicate compares two values.
If the value of either operand is null, the result of the predicate is unknown. Otherwise the result is either true or false.
For values x and y:
Examples:
EMPNO='528671' SALARY < 20000 PRSTAFF <> :VAR1 SALARY > (SELECT AVG(SALARY) FROM EMPLOYEE)
All these product-specific forms of the comparison operators are intended only to support existing SQL that uses these operators, and are not recommended for use when writing new SQL statements.