实例 PostgreSQL 使用 MIN 函数实例

 
SELECT MIN(price)
FROM products;        
                    

输出结果

 min
------
 2.50
(1 row)