Course
Simulator
More
Premium
Log in
MySQL Function Reference
Functions
LEAST
LEAST
Returns the minimum value from the list
MySQL 8.1
LEAST
(
num
[
,
num
]
)
Examples
MySQL 8.1
SELECT
LEAST
(
1
,
2
,
-
1
)
;