SQL FunctionsConditional FunctionsLEASTOn this pageLEASTReturns the minimum value from a set of values. Syntax LEAST(<value1>, <value2> ...) Examples SELECT LEAST(5, 9, 4);┌────────────────┐│ least(5, 9, 4) │├────────────────┤│ 4 │└────────────────┘