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 smallest value of an expression.
Syntax
Min(expression)
Parameter Values
Parameter | Description |
---|---|
expression | Required. A numeric value (can be a field or a formula) |
Technical Details
Works in: | Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000 |
---|