Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - Database Management and Reference » UltraLite SQL Function Reference » Alphabetical list of functions

MAX function [Aggregate] Next Page

MIN function [Aggregate]


Returns the minimum expression value found in each group of rows.

Syntax 1

MIN( expression | DISTINCT expression )

Parameters

expression    The expression for which the minimum value is to be calculated. This is commonly a column name.

DISTINCT expression    Returns the same as MIN( expression ), and is included for completeness.

Remarks

Rows where expression is NULL are ignored. Returns NULL for a group containing no rows.

See also
Standards and compatibility
Example

The following statement returns the value 24903.000, representing the minimum salary in the Employees table.

SELECT MIN( Salary )
FROM Employees;