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

and

The boolean AND operation. Conjunction of two boolean arguments using standard SQL behavior.

Syntax

  <condition> AND <condition>

Parameters

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

Returns

TRUE
If both conditions return true.
FALSE
If at least one of the condition returns false and no conditions return null.
NULL
If at least one of the conditions returns null.

Examples

SQL_CONTAINS('foo') AND SQL_CONTAINS('bar')