Links
Comment on page

Equality =

Operator: =
The Equality operator = is used to check whether two values are equal.
The values can be of any type, as long as the operator is applied to values of the same type.
In case of text-comparison, the equality check ignores cases (upper/lowercase) and diacritics (accents).
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns Yes when Value1 is equal to Value2
Returns No when Value1 is not equal to Value2
If any of the parameters is unknown, the result is unknown.
value1 = value2
35 = 35 => Yes
"Hello World?" = "Hello, World" => No
"abcde" = "ABCDE" => Yes