---恢复内容开始--- 数值函数 常用的处理数值的函数有如下: No. 函数名 含义 1 round(x[,y]) 返回四舍五入后的值 2 trunc(x[,y]) 不会四舍五入 3 mod(x,y) 取余数 select round(3.5555,2) from dual:截取到小数点后两位 select trunc(3.6666,2) from dual:截取到小数点后两位,不四舍五入 select mod(16,5) from dual 去余 日期函数 之前用过一个伪列sysdate,还