SQL Function Reference

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