Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

Max

Example

Determine the price of the highest-priced item in the “Products” table.

SELECT Max(Price) AS LargestPrice FROM Products;

Definition and Usage

The Max() function retrieves the highest value from a set of values.

Note: Refer to the Min() function for finding the minimum value.

Syntax

Max(expression)

Parameter Values

Parameter

Description

expression

Required: A numeric value, which can be either a field or a formula.

Technical Details

WORKS IN

From Access 2000