every
funzione di aggregazione
Si applica a: Databricks SQL Databricks Runtime
Restituisce true se tutti i valori di expr
nel gruppo sono true. Questa funzione è un sinonimo di bool_and funzione di aggregazione.
Sintassi
every(expr) [FILTER ( WHERE cond ) ]
Questa funzione può anche essere richiamata come funzione window usando la OVER
clausola .
Argomenti
expr
: espressione BOOLEAN.cond
: espressione booleana facoltativa che filtra le righe usate per l'aggregazione.
Valori restituiti
Valore booleano.
Esempi
> SELECT every(col) FROM VALUES (true), (true), (true) AS tab(col);
true
> SELECT every(col) FROM VALUES (NULL), (true), (true) AS tab(col);
true
> SELECT every(col) FROM VALUES (true), (false), (true) AS tab(col);
false
> SELECT every(col1) FILTER(WHERE col2 = 1)
FROM VALUES (true, 1), (false, 2), (true, 1) AS tab(col1, col2);
true