Oracle SQL语句 之 round函数

定义

Round( ) 函数:传回一个数值,该数值是按照指定的小数位元数进行四舍五入运算的结果。

语法

ROUND( number, decimal_places ),其中:number为需要四舍五入处理的数值、decimal_places : 四舍五入 , 小数取几位 ( 不写默认为 0 )。

返回值类型

数字

举例

未加round函数

sum(a.固定资产净值)/10000,2) as 固定资产总数_万元,
sum(a.营业收入)/10000,2) as 营业收入总数_万元,
sum(a.应交增值税)/10000,2) as 应交税总数_万元

file

加入round函数,截取小数点后两位

round(sum(a.固定资产净值)/10000,2) as 固定资产总数_万元,
round(sum(a.营业收入)/10000,2) as 营业收入总数_万元,
round(sum(a.应交增值税)/10000,2) as 应交税总数_万元

file

Related Posts