or
The boolean OR
operation. Disjunction of two boolean arguments using standard SQL behavior.
<condition> OR <condition>
<condition>
- A condition expression that results in a boolean value.
TRUE
- If at least one condition returns
TRUE
. FALSE
- If both conditions are
FALSE
. NULL
- If both conditions are
NULL
.
SQL_CONTAINS('foo') OR SQL_CONTAINS('bar')