MySQL MAX() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MySQL MAX() Function

❮ MySQL Functions

Example

Find the price of the most expensive product in the "Products" table:

SELECT MAX(Price) AS LargestPrice FROM Products;
Try it Yourself »

Definition and Usage

The MAX() function returns the maximum value of an expression.

Note: See also the MIN() function.

Syntax

MAX(expression)

Parameter Values

Parameter Description
expression Required. A numeric value (can be a field or a formula)

Technical Details

Works in: MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23

❮ MySQL Functions