码迷,mamicode.com
首页 > 数据库 > 详细

oracle中的round()方法的用法

时间:2017-03-27 11:20:43      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:ber   ima   方法   ace   acl   数位   类型   返回   值类型   

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()方法的用法

标签:ber   ima   方法   ace   acl   数位   类型   返回   值类型   

原文地址:http://www.cnblogs.com/thomasbc/p/6625184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!