Skip to main content



Operators

All Operators

OperatorDescription
AndReturns the logical AND of one or more expressions.
DivideDivides the value of one numeric expression by another.
EqualToReturns true if two expressions are equal.
GreaterThanReturns true if the first expression is greater than the second expression.
GreaterThanOrEqualReturns true if the first expression is greater than or equal to the second expression.
LessThanReturns true if the first expression is less than the second expression.
LessThanOrEqualReturns true if the first expression is less than or equal to the second expression.
MinusSubtracts the value of one numeric expression from another.
MultiplyMultiplies the value of one numeric expression by another.
NotEqualToReturn true if two expressions are not equal.
OrReturns the logical OR of one or more expressions.
PlusAdds the value of one numeric expression to another.
PowerTakes the value of one numeric expression to the power of the exponent value.
XorThe Xor function returns the logical exclusive OR of one or more expressions. The Xor operator requires two expressions.