count_if
statistische functie
Van toepassing op: Databricks SQL Databricks Runtime
Geeft als resultaat het aantal werkelijke waarden voor de groep in expr
.
Syntaxis
count_if ( [ALL | DISTINCT] expr ) [ FILTER ( WHERE cond ) ]
Deze functie kan ook worden aangeroepen als een vensterfunctie met behulp van de OVER
component.
Argumenten
expr
: Een BOOLE-expressie.cond
: Een optionele Boole-expressie die de rijen filtert die worden gebruikt voor aggregatie.
Retouren
A BIGINT
.
count_if(expr) FILTER(WHERE cond)
is equivalent aan count_if(expr AND cond)
.
Als DISTINCT
er alleen unieke rijen worden geteld.
Voorbeelden
> SELECT count_if(col % 2 = 0) FROM VALUES (NULL), (0), (1), (2), (2), (3) AS tab(col);
3
> SELECT count_if(DISTINCT col % 2 = 0) FROM VALUES (NULL), (0), (1), (2), (2), (3) AS tab(col);
2
> SELECT count_if(col IS NULL) FROM VALUES (NULL), (0), (1), (2), (3) AS tab(col);
1