1.round():四舍五入函数 round(数值,参数):如果参数的值为正数,表示保留几位小数,如果参数的值为0,则只保留正数部分们如果参数的值为负数,表示对小数点前第几位进行四舍五入. Eg:(1)select round(45.926,2) from dual (2)select round(45.926,1) from dual (3)select round(45.926,0) from dual (4)select round(45.926,-1) from dual (5)sele…