Oracle round函数是什么意思?怎么运用?

Posted 美好的明天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle round函数是什么意思?怎么运用?相关的知识,希望对你有一定的参考价值。

如何使用 Oracle Round 函数 (四舍五入)
描述 : 传回一个数值,该数值是按照指定的小数位元数进行四舍五入运算的结果。
SELECT ROUND( number, [ decimal_places ] ) FROM DUAL
参数:
number : 欲处理之数值
decimal_places : 四舍五入 , 小数取几位 ( 预设为 0 )
Sample :
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函数是什么意思?怎么运用?的主要内容,如果未能解决你的问题,请参考以下文章

round()round函数返回啥值?

oracle数据库中为啥在decode函数里面用round函数,查询出来的小于1的小数前面的0不显示啊?怎么解决

oracle中的over函数怎么用的,啥意思

oracle如何用abs()处理后保留2位

round是啥意思?

oracle Instr函数问题