elvis blogs

日子过得很有意义,我们产出了很多,也消费了很多!在这个过程中,我们汲取了养份和能量又即将发挥在不久的将来!我们努力着,拼博着并快乐着!

导航

2012年1月13日 #

SQL Server 数值四舍五入,小数点后保留2位

摘要: 1.round() 函数是四舍五入用,第一个参数是我们要被操作的数据,第二个参数是设置我们四舍五入之后小数点后显示几位。2.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 select cast(round(122.5255,2) as numeric(5,2))结果:122.53 select cast(round(1222.5255,... 阅读全文

posted @ 2012-01-13 12:51 elvis blogs 阅读(4695) 评论(0) 推荐(0) 编辑