MAX (Lakehouse v2)
Returns the maximum value in a set of values.
Analyze Syntax
Section titled “Analyze Syntax”func.max(get_column(table, 'salary'))Analyze Examples
Section titled “Analyze Examples”func.max(get_column(table, 'salary'))
┌────────┐│ 150000 │└────────┘SQL Syntax
Section titled “SQL Syntax”MAX(<salary>)SQL Examples
Section titled “SQL Examples”SELECT MAX(salary) FROM employees;
┌────────┐│ 150000 │└────────┘