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.

value1 = value2

35 = 35 => Yes

"Hello World?" = "Hello, World" => No

"abcde" = "ABCDE" => Yes

Last updated

Was this helpful?