As Expr uses BQL, all the standard BQL expression syntax is available. For more information on BQL expressions, see the Niagara Developer Guide.
Operators are processed by their precedence, that is “order of operation”, from first (1) to last (6).
logical not, numeric negation
multiplication, division
addition, subtraction
comparisons
logical operators
result operator
You may use parentheses to override the normal precedence as illustrated in the following examples.

In the first expression, multiplication precedes addition. Adding the parentheses changes the precedence so that addition precedes multiplication.