oracle中的round()方法的用法

Posted 托马斯骨头收集

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中的round()方法的用法相关的知识,希望对你有一定的参考价值。

Round( ) 函数

 
传回一个数值,该数值是按照指定的小数位元数进行四舍五入运算的结果
 
语法
ROUND( number, decimal_places )
 
number : 需四舍五入处理的数值 
decimal_places : 四舍五入 , 小数取几位 ( 预设为 0 )
 
返回值类型
 
数字
 
例子
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()方法的用法的主要内容,如果未能解决你的问题,请参考以下文章

oracl中的集合操作符

oracl函数

oracl sql developer使用

oracl遇到的问题

如何用PL/SQL Developer连接ORACL数据库

oracle中的ceil函数和floor函数的区别