Documentation
Toggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

or

The boolean OR operation. Disjunction of two boolean arguments using standard SQL behavior.

Syntax

  <condition> OR <condition>

Parameters

<condition>
A condition expression that results in a boolean value.

Returns

TRUE
If at least one condition returns TRUE.
FALSE
If both conditions are FALSE.
NULL
If both conditions are NULL.

Examples

SQL_CONTAINS('foo') OR SQL_CONTAINS('bar')