Skip to main content

Precedence

Operator precedence describes the order in which operations are performed in an arithmetic expression.

The numbers are called operands, and the operation is defined by the operator.

PriorityOperatorDescriptionExample
0>> << |>Connection OperatorsTest1 > 0 >>
1()Expression grouping(3 + 4)
2[]Attribute Table fieldAttribute[columnA]
2()Function callFunction()
2{}Keywords{PreviousCase}:test1
2;Attributes definition separatorFunction(par1; par2)
2!Unit of measure operator 
3*Multiplication10 * 5
3/Division10 / 5
3@Division Remainder10 % 5
4+Addition10 + 5
4-Subtraction10 - 5
5<Less thanx < y
5<= =<Less than or equalx <= y
5>Greater thanx > y
5>= =>Greater than or equalx >= y
5=Equalx = y
5<>Not Equalx <> y
6ANDLogical AND 
6ORLogical OR 
6XORLogical XOR