Loading lesson path
Concept visual
Start at both ends
Find the price of the cheapest product in the "Products" table:
SmallestPrice FROM Products;The MIN() function returns the minimum value in a set of values.
See also the MAX() function.
expression )
Required. A numeric value (can be a field or a formula)
From MySQL 4.0
❮ MySQL Functions