ANY_VALUE (Lakehouse v2)
Returns any arbitrary value from a group of rows.
Analyze Syntax
Section titled “Analyze Syntax”func.any_value(get_column(table, 'department'))Analyze Examples
Section titled “Analyze Examples”func.any_value(get_column(table, 'department'))
┌───────┐│ Sales │└───────┘SQL Syntax
Section titled “SQL Syntax”ANY_VALUE(<department>)SQL Examples
Section titled “SQL Examples”SELECT ANY_VALUE(department) FROM employees;
┌───────┐│ Sales │└───────┘