equals & not equals
The =
and <>
operations. Compares whether two values are (not) equal.
<value> = <value>
<value> <> <value>
<value>
- The values to compare
TRUE
- If values are equal (and neither value is null). Or (
FALSE
in the case of the not equals operator) FALSE
- If the values are not equal (and neither value is null). Or (
TRUE
in the case of the not equals operator) NULL
- If at least one of the values is null.
SQL_CONTAINS('foo') AND SQL_CONTAINS('bar')