oracle Round() 函数
发布时间:2020-12-12 15:38:00 所属栏目:百科 来源:网络整理
导读:oracle Round() 函数 Round( ) 函数 传回一个数值,该数值是按照指定的小数位元数进行四舍五入运算的结果 语法 ROUND( number,decimal_places ) number : 需四舍五入处理的数值 decimal_places : 四舍五入,小数取几位 ( 预设为 0 ) 返回值类型 数字 例子 sele
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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |