1.Ceiling()函数
Ceiling,英文中,是天花板的意思,有上限的意思,所以,此函数是向上取整,它返回的是大于或等于函数参数,并且与之最接近的整数。
示例:
1 SELECT CEILING(123.45), CEILING(-123.45), CEILING(0.0);
结果:
2.Floor()函数
floor,在英文中,是地面,地板的意思,有下面的意思,所以,此函数是向下取整,它返回的是小于或等于函数参数,并且与之最接近的整数。
floor函数在数学中又称高斯函数。
示例:
1 SELECT FLOOR(123.45), FLOOR(-123.45), FLOOR(0.0);
结果:
3.Round()函数
round,在英文中是有大约,环绕,在某某四周,附近的意思,所以,可以取其大约的意思,在函数中是四舍五入。
示例:
1 SELECT ROUND(123.45,1), ROUND(-123.45,1), ROUND(0.0,1);
结果:
三个函数的英文定义:
CEILING ( numeric_expression ): This function returns the smallest integer greater than, or equal to, the specified numeric expression.
FLOOR ( numeric_expression ): This funcion returns the largest integer less than or equal to the specified numeric expression.
ROUND ( numeric_expression , length [ ,function ] ):This function returns a numeric value, rounded to the specified length or precision.
上述3个取整函数,是个通用函数,不仅在SQL中,在各种编程语言中都有应用。
可以根据需要去检索相关语言领域的文献。
参考文献:
1.Ceiling()
2.FLOOR()
3.Round()
4.取整函数