BOOL_OR (Lakehouse v2)
Returns TRUE if any value in the group is TRUE.
Analyze Syntax
Section titled “Analyze Syntax”func.bool_or(get_column(table, 'is_active'))Analyze Examples
Section titled “Analyze Examples”func.bool_or(get_column(table, 'is_active'))SQL Syntax
Section titled “SQL Syntax”BOOL_OR(<is_active>)SQL Examples
Section titled “SQL Examples”SELECT department, BOOL_OR(is_active) FROM employees GROUP BY department;
┌────────────┬─────────────────────┐│ department │ bool_or(is_active) │├────────────┼─────────────────────┤│ Sales │ 1 ││ IT │ 1 │└────────────┴─────────────────────┘