数据库类
SQL Server 数值四舍五入,小数点后保留2位
Kalet 发表于2019-05-08 浏览843 评论0
.round()函数是四舍五入用,第一个参数是我们要被操作的数据,第二个参数是设置我们四舍五入之后小数点后显示几位。.numeric函数的2个参数,第一个表示数据长度,第二个参数表示小数点后位数。例如: select cast(round(12.5,2) as numeric(5,2)) 结果:12.50 select cast(round(12.555,2) as numeric(5,2)) 结果:12.56 sel...