Skip to main content

MAX (SQL)

An aggregate function that returns the maximum data value in a specified column.

Synopsis

MAX([ ALL | DISTINCT [BY(col-list)] ] 
  expression
  [ %FOREACH(col-list) ] [ %AFTERHAVING ])

Description

The MAX aggregate function returns the largest (maximum) of the values of expression. Commonly, expression is the name of a field, (or an expression containing one or more field names) in the multiple rows returned by a query.

MAX can be used in a SELECT query or subquery that references either a table or a view. MAX can appear in a SELECT list or HAVING clause alongside ordinary field values.

MAX cannot be used in a WHERE clause. MAX cannot be used in the ON clause of a JOIN, unless the SELECT is a subquery.

Like most other aggregate functions, MAX cannot be applied to a stream field. Attempting to do so generates an SQLCODE -37 error.

Unlike most other aggregate functions, the ALL and DISTINCT keywords, including MAX(DISTINCT BY(col2) col1), perform no operation in MAX. They are provided for SQL–92 compatibility.

Data Values

The specified field used by MAX can be numeric or nonnumeric. For a numeric data type field, maximum is defined as highest in numeric value; thus -3 is higher than -7. For a non-numeric data type field, maximum is defined as highest in string collation sequence; thus '-7' is higher than '-3'.

An empty string ('') value is treated as CHAR(0).

A predicate uses the collation type defined for the field. By default, string data type fields are defined with SQLUPPER collation, which is not case-sensitive. You can define the string collation default for the current namespace and specify a non-default field collation type when defining a field/property.

When the field’s defined collation type is SQLUPPER, MAX returns strings in all uppercase letters. Thus SELECT MAX(Name) returns 'ZWIG', regardless of the original lettercase of the data. But because comparisons are performed using uppercase collation, the clause HAVING Name=MAX(Name) selects rows with the Name value 'Zwig', 'ZWIG', and 'zwig'.

For numeric values, the scale returned is the same as the expression scale.

NULL values in data fields are ignored when deriving a MAX aggregate function value. If no rows are returned by the query, or the data field value for all rows returned is NULL, MAX returns NULL.

Arguments

ALL

An optional argument that applies the aggregate function to all values. ALL has no effect on the value returned by MAX. It is provided for SQL-92 compatibility.

DISTINCT

An optional DISTINCT clause that specifies that each unique value is considered. DISTINCT has no effect on the value returned by MAX. It is provided for SQL-92 compatibility.

expression

Any valid expression. Usually the name of a column that contains the values from which the maximum value is to be returned.

%FOREACH(col-list)

An optional column name or a comma-separated list of column names. See SELECT for further information on %FOREACH.

%AFTERHAVING

An optional argument that applies the condition found in the HAVING clause.

MAX returns the same data type as expression.

Note:

MAX can be specified as an aggregate function or as a window function. This reference page describes the use of MAX as an aggregate function. MAX as a window function is described in Overview of Window Functions.

Changes Made During the Current Transaction

Like all aggregate functions, MAX always returns the current state of the data, including uncommitted changes, regardless of the current transaction’s isolation level. For further details, refer to SET TRANSACTION and START TRANSACTION.

Examples

The following query returns the highest (maximum) salary in the Sample.Employee database:

SELECT '$' || MAX(Salary) As TopSalary
     FROM Sample.Employee

The following query returns one row for each state that contains at least one employee with a salary smaller than $25,000. Using the %AFTERHAVING keyword, each row returns the maximum employee salary smaller than $25,000. Each row also returns the minimum salary and the maximum salary for all employees in that state:

SELECT Home_State,
       '$' || MAX(Salary %AFTERHAVING) AS MaxSalaryBelow25K,
       '$' || MIN(Salary) AS MinSalary,
       '$' || MAX(Salary) AS MaxSalary
          FROM Sample.Employee
     GROUP BY Home_State
     HAVING Salary < 25000
     ORDER BY Home_State

The following query returns the lowest (minimum) and highest (maximum) name in collation sequence found in the Sample.Employee database:

SELECT Name,MIN(Name),MAX(Name)
     FROM Sample.Employee

Note that MIN and MAX convert Name values to uppercase before comparison.

The following query returns the highest (maximum) salary for an employee whose Home_State is 'VT' in the Sample.Employee database:

SELECT MAX(Salary)
     FROM Sample.Employee
     WHERE Home_State = 'VT'

The following query returns the number of employees and the highest (maximum) employee salary for each Home_State in the Sample.Employee database:

SELECT Home_State, 
     COUNT(Home_State) As NumEmployees, 
     MAX(Salary) As TopSalary
     FROM Sample.Employee
     GROUP BY Home_State
     ORDER BY TopSalary

See Also

FeedbackOpens in a new tab