SQL Function Reference

MIN
Returns the minimum value from a set of values.
MySQL
MIN(expr)
expr
An expression to find the minimum value for
Examples
MySQL
SELECT MIN(unit_price)
FROM Payments;