and
predicado
Se aplica a: Databricks SQL Databricks Runtime
Devuelve el AND lógico de expr1
y expr2
.
Sintaxis
expr1 and expr2
Argumentos
expr1
: expresión BOOLEANexpr2
: expresión BOOLEAN
Devoluciones
Una expresión BOOLEANA.
Ejemplos
> SELECT true and true;
true
> SELECT true and false;
false
> SELECT true and NULL;
NULL
> SELECT false and NULL;
false