Loading lesson path
Concept visual
Start at both ends
Find the price of the most expensive product in the "Products" table:
SELECT Max(Price) AS LargestPrice FROM Products;The Max() function returns the maximum value in a set of values.
Min() function.
expression )
Required. A numeric value (can be a field or a formula)
❮ MS Access Functions