使用postgresql的round()四舍五入函数报错,HINT: No function matches the given name and argument types. You might

需求:使用postgresql的round()四舍五入保留两位小数

报错:HINT: No function matches the given name and argument types. You might

解决方案:
使用cast函数将需要四舍五入的值转为 numeric,转为其他的类型可能会报错
示例:round(cast(计算结果) as numeric), 2)

你可能感兴趣的:(PostgreSQL)