MS Access Min() Function
Example
Find the price of the cheapest product in the "Products" table:
SELECT 
  Min(Price) AS 
  SmallestPrice FROM Products;
Try it Yourself »
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 | 
|---|
 
 
