MAX (Transact-SQL)
SQL Server 2005
Returns the maximum value in the expression. May be followed by the OVER clause.
Transact-SQL Syntax Conventions
- ALL
-
Applies the aggregate function to all values. ALL is the default.
- DISTINCT
-
Specifies that each unique value is considered. DISTINCT is not meaningful with MAX and is available for SQL-92 compatibility only.
- expression
-
Is a constant, column name, or function, and any combination of arithmetic, bitwise, and string operators. MAX can be used with numeric, character, and datetime columns, but not with bit columns. Aggregate functions and subqueries are not permitted.
For more information, see Expressions (Transact-SQL).
Returns a value same as expression.
Important: |
|---|
| Distinct aggregates, for example AVG(DISTINCT column_name), COUNT(DISTINCT column_name), MAX(DISTINCT column_name), MIN(DISTINCT column_name), and SUM(DISTINCT column_name), are not supported when you use CUBE or ROLLUP. If they are used, Microsoft SQL Server 2005 Database Engine returns an error message and cancels the query. |
Reference
Aggregate Functions (Transact-SQL)OVER Clause (Transact-SQL)
