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