Function Reference > Operators > Operator precedence
  

Operator precedence

When you create an expression, you can use multiple operators and use operators within nested expressions.
If you write an expression that includes multiple operators, Data Integration evaluates the expression in the following order:
  1. 1Complex operators
  2. 2Arithmetic operators
  3. 3String operators
  4. 4Comparison operators
  5. 5Logical operators
Data Integration evaluates operators in the order they appear in the following table. It evaluates operators in an expression with equal precedence to all operators from left to right.
The following table lists the precedence for all transformation language operators:
Operator
Meaning
[ ], .
Subscript, dot.
( )
Parentheses.
+, -, NOT
Unary plus and minus and the logical NOT operator.
*, /, %
Multiplication, division, modulus.
+, -
Addition, subtraction.
||
Concatenate.
<, <=, >, >=
Less than, less than or equal to, greater than, greater than or equal to.
=, <>, !=, ^=
Equal to, not equal to, not equal to, not equal to.
AND
Logical AND operator, used when specifying conditions.
OR
Logical OR operator, used when specifying conditions.
You can use operators within nested expressions. When expressions contain parentheses, Data Integration evaluates operations inside parentheses before operations outside parentheses. Operations in the innermost parentheses are evaluated first.
For example, depending on how you nest the operations, the equation 8 + 5 - 2 * 8 returns different values:
Equation
Return value
8 + 5 - 2 * 8
-3
8 + (5 - 2) * 8
32