bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access Min() Function

Concept visual

MS Access Min() Function

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Example

Find the price of the cheapest product in the "Products" table:

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

Parameter

Description expression

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

Technical Details

Works in:

From Access 2000

Previous

❮ MS Access Functions

Next

Previous

MS Access Max() Function

Next

MS Access Randomize() Function