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: Also look at the MAX() function.
Syntax
MIN(expression)