1、round(a,b)函数
a:需要四舍五入的数值
b:小数点后的位数
例子:select round(123.4564,2) from dual;
结果:123.46
2、decimal(a,b)函数
a:定位精度
b:小数点后保留的位数
例子:select cast('123.4564' as decimal(38,2)) from dual;
结果:123.46
1、round(a,b)函数
a:需要四舍五入的数值
b:小数点后的位数
例子:select round(123.4564,2) from dual;
结果:123.46
2、decimal(a,b)函数
a:定位精度
b:小数点后保留的位数
例子:select cast('123.4564' as decimal(38,2)) from dual;
结果:123.46