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