Links
Comment on page

Equality-strong ==

Operator: ==
The Strict- or Strong Equality operator == is used to check if one text "strictly" equals another text. This check is case-sensitive and also checks diacritics (accents).
This strong equal check is done using double equal-signs "==" and can only be used to compare text values.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns Yes if text_a strictly equals text_b.
Returns No if text_a is not strictly equal to text_b.
text_a == text_b
"Hello World?" == "Hello, World" => No
"abcdEFGê!" == "abcdEFGê!" => Yes
"abcdEFGê" == "abcdEFGe" => No