PostgreSQL四舍五入

pgsql里面的四舍五入

round(doule num, digits)

注意第一个参数,也就是要转换的数,必须保证是小数类型,

如果你不能保证你要四舍五入的数里面是否有整数,则需要进行转换

也就是如下的方法,    使用cast

-- 举例
round(cast(20) as numeric, 2)

这是和mysql是有点区别的,

你可能感兴趣的:(PostgreSQL,数据库,postgresql,round,cast)