some
aggregate function
July 17, 2024
Applies to: Databricks SQL
Databricks Runtime
Returns true
if at least one value of expr
in a group is true.
The some
aggregate function is synonymous with any aggregate function and bool_or aggregate function.
Syntax
some(expr) [FILTER ( WHERE cond ) ]
This function can also be invoked as a window function using the OVER
clause.