bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access Min() Function

Example

SELECT
  Min(Price) AS
  SmallestPrice FROM Products;

Definition and Usage

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

Note

See also the Max() function.

Syntax

Min(
expression
)

Parameter Values

ParameterDescription
expressionRequired. A numeric value (can be a field or a formula)

Technical Details

Works in:From Access 2000

Previous

MS Access Max() Function

Next

MS Access Randomize() Function