共用方式為


bool_and 聚合函數

適用於:核取記號為「是」Databricks SQL 核取記號為「是」Databricks Runtime

當群組 expr 中的所有 values 都為 true 時,則傳回 true。 此函式與每個聚合函數義。

語法

bool_and(expr) [FILTER ( WHERE cond ) ]

您可以將此函式作為 window 函式,並使用 OVER 子句來調用。

引數

  • expr:布爾表達式。
  • cond:選擇性布爾表示式,篩選用於匯總的數據列。

傳回

布爾值。

範例

> SELECT bool_and(col) FROM VALUES (true), (true), (true) AS tab(col);
 true

> SELECT bool_and(col) FROM VALUES (NULL), (true), (true) AS tab(col);
 true

> SELECT bool_and(col) FROM VALUES (true), (false), (true) AS tab(col);
 false

> SELECT bool_and(col1) FILTER(WHERE col2 = 1)
    FROM VALUES (true, 1), (false, 2), (true, 1) AS tab(col1, col2);
 true