在 "Products" 表中查找最便宜产品的价格:
SELECT Min(Price) AS SmallestPrice FROM Products;
Min() 函数返回一组值中的最小值。
Min()
注意:另请参见 Max() 函数。
Max()
Min( expression )