and
-Prädikat
Gilt für: Databricks SQL Databricks Runtime
Gibt das logische AND von expr1
und expr2
zurück.
Syntax
expr1 and expr2
Argumente
expr1
: Ein BOOLESCHER Ausdruckexpr2
: Ein BOOLESCHER Ausdruck
Gibt zurück
Einen BOOLESCHEN Wert.
Beispiele
> SELECT true and true;
true
> SELECT true and false;
false
> SELECT true and NULL;
NULL
> SELECT false and NULL;
false