sql中四舍五入取整的

SQL里Round函数如何使用?
SQL里Round函数如何使用?
SQL取整函数ROUND的用法
ROUND ( numeric_expression , length [ , function ] )参数numeric_expression
精确数字或近似数字数据类型类别的表达式(bit 数据类型除外)。length
是 numeric_expression 将要四舍五入的精度。length 必须是 tinyint、smallint 或int。当 length 为正数时,numeric_expression 四舍五入为 length 所指定的小数位数。当 length 为负数时,numeric_expression 则按 length 所指定的在小数点的左边四舍五入。function
是要执行的操作类型。function 必须是 tinyint、smallint 或 int。如果省略 function 或 function 的值为 0(默认),numeric_expression 将四舍五入。当指定 0 以外的值时,将截断 numeric_expression。
sql数字位数怎么用函数求?
返回由数字数据转换来的字符数据。
语法:STR ( float_expression [ , length [ , decimal ] ] )
float_expression
带小数点的数字 ( float) 数据类型的表达式。
length
总长度。它包括小数点、符号、数字以及空格。
默认值为 10。如果数字长度没有指定的长,则前面会填充空格
decimal
小数点右边的小数位数。decimal 必须小于等于 16。
如果 decimal 大于 16,则将结果截断为小数点右边的 16 位。
会进行四舍五入。
比如 SELECT STR(123.45, 30, 1)
返回前面带有25个空格 的 123.5