EQL enforces the following precedence rules for operators.
The rules are listed in descending order.
- Parentheses (as well as
brackets in
LOOKUP and
IN expressions)
Note: You can freely add parentheses any time you want to impose an
alternative precedence or to make precedence clearer.
- * /
- + -
- = <> < > <=
>=
- IS
(IS NULL,
IS NOT NULL)
- BETWEEN
- NOT
- AND
- OR
Note: All binary operators are left-associative, as are all of the
JOIN operators.