LEAST (Lakehouse v2)
Returns the smallest value from a list of values.
Analyze Syntax
Section titled “Analyze Syntax”func.least(<val1>, <val2>[, ...])Analyze Examples
Section titled “Analyze Examples”func.least(3, 7, 1, 9, 4)
┌───┐│ 1 │└───┘SQL Syntax
Section titled “SQL Syntax”LEAST(<val1>, <val2>[, ...])SQL Examples
Section titled “SQL Examples”SELECT LEAST(3, 7, 1, 9, 4);
┌───┐│ 1 │└───┘