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

Min

Example

Determine the price of the least expensive product in the “Products” table.

SELECT Min(Price) AS SmallestPrice FROM Products;

Definition and Usage

The Min() function returns the smallest value in a set of values.

Note: See also the Max() function.

Syntax

Min(expression)

Parameter Values

Parameter

Description

expression

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

Technical Details

WORKS IN

From Access 2000