1、通过测试只要添加 cast(sum(字段) as DECIMAL) 使用 cast (字段 as decimal(19,5)) 可以指定精度。 例如:select cast(sum(money) as DECIMAL) from moneytable 2、使用round保留几位小数 例如:select round(sum(money),5) from moneytable
1、通过测试只要添加 cast(sum(字段) as DECIMAL) 使用 cast (字段 as decimal(19,5)) 可以指定精度。 例如:select cast(sum(money) as DECIMAL) from moneytable 2、使用round保留几位小数 例如:select round(sum(money),5) from moneytable