求oracle中sql语句中取数值精度函数.如:select 2/3 from dual;得到的是0.666666666666667,现在要取两位精度,0.67,有这个函数据,如何实现,谢谢![解决办法]select round(2/3,2) from dual;