every
聚合函數
適用於: Databricks SQL Databricks Runtime
如果群組中所有expr
的值都為 true,則傳回 true。 此函式與bool_and聚合函數同義。
語法
every(expr) [FILTER ( WHERE cond ) ]
您也可以使用 子句,將此函式叫用OVER
為視窗函式。
引數
expr
:布爾表達式。cond
:選擇性布爾表示式,篩選用於匯總的數據列。
傳回
布爾值。
範例
> 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