实例 PostgreSQL 使用 MAX 函数实例

 
SELECT MAX(price)
FROM products;        
                    

输出结果

 max
--------
 263.50
(1 row)