LEAST (Lakehouse v1)
Returns the minimum value from a set of values.
Analyze Syntax
Section titled “Analyze Syntax”func.least((<value1>, <value2> ...))Analyze Examples
Section titled “Analyze Examples”func.least((5, 9, 4))
┌───────────────────────┐│ func.least((5, 9, 4)) │├───────────────────────┤│ 4 │└───────────────────────┘SQL Syntax
Section titled “SQL Syntax”LEAST(<value1>, <value2> ...)SQL Examples
Section titled “SQL Examples”SELECT LEAST(5, 9, 4);
┌────────────────┐│ least(5, 9, 4) │├────────────────┤│ 4 │└────────────────┘