least
This section contains reference documentation for the least function.
Signature
Argument
Type
Description
Usage Examples
SELECT least(10, 5) AS value
FROM myTablevalue
SELECT least(10.5, 10.3) AS value
FROM myTablevalue
SELECT least(100, 50L) AS mixed_int_long, least(3.14F, 2.71F) AS float_least, least(3.14, 2.71) AS double_least
FROM myTableLast updated
Was this helpful?

