数据库
首页 > 数据库> > Oracle 的 Round 函数

Oracle 的 Round 函数

作者:互联网

Oracle 的 Round 函数


如何使用 Oracle Round 函数 (四舍五入)

描述 : 返回一个数值,该数值是按照指定的小数位数进行四舍五入运算的结果。

SELECT ROUND( number, [ decimal_places ] ) FROM DUAL

参数:

number : 欲处理之数值

decimal_places : 四舍五入 , 小数取几位 ( 默认为 0 )

Sample :

select round(123.456) from dual; 回传 123

select round(123.456, 0) from dual; 回传 123

select round(123.456, 1) from dual; 回传 123.5

select round(123.456, 2) from dual; 回传 123.46

select round(123.456, 3) from dual; 回传 123.456

select round(-123.456, 2) from dual; 回传 -123.46

原文:大专栏  Oracle 的 Round 函数


标签:函数,123.456,round,回传,dual,Oracle,Round,select
来源: https://www.cnblogs.com/chinatrump/p/11496599.html