snowflake.snowpark.functions.boolor_agg¶
- snowflake.snowpark.functions.boolor_agg(expr: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns the logical OR of all non-NULL records in a group. If all records are NULL, returns NULL.
- Parameters:
expr (ColumnOrName) – Boolean values to aggregate.
- Returns:
The logical OR aggregation result.
- Return type:
Example: