-
numeric_expression
-
精确数字或近似数字数据类型类别(bit 数据类型除外)的表达式。
-
length
-
numeric_expression 的舍入精度。length 必须是 tinyint、smallint 或int 类型的表达式。 如果 length 为正数,则将 numeric_expression 舍入到length 指定的小数位数。 如果 length 为负数,则将 numeric_expression 小数点左边部分舍入到length 指定的长度。
-
function
-
要执行的操作的类型。 function 的类型必须为tinyint、smallint 或int。 如果省略 function 或其值为 0(默认值),则将舍入 numeric_expression。 如果指定了 0 以外的值,则将截断numeric_expression。
实例
declare @num decimal(18,5)=12345.67890
select ROUND(@num,2) --12345.68000
select ROUND(@num,3) --12345.67900
select ROUND(@num,2,0)--12345.68000
select ROUND(@num,2,1)--12345.67000
select ROUND(@num,2,2)--12345.67000