bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access Max() Function

Example

SELECT Max(Price) AS LargestPrice FROM Products;

Definition and Usage

The Max() function returns the maximum value in a set of values.

Note

See also the Min() function.

Syntax

Max(
expression
)

Parameter Values

ParameterDescription
expressionRequired. A numeric value (can be a field or a formula)

Technical Details

Works in:From Access 2000

Previous

MS Access Int() Function

Next

MS Access Min() Function