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

Oracle round函数 四舍五入

时间:2018-11-20 13:16:25      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:target   com   处理   http   round   运算   intern   结果   src   

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函数 四舍五入

标签:target   com   处理   http   round   运算   intern   结果   src   

原文地址:https://www.cnblogs.com/cathy-blog/p/9988143.html

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