關於oracle取整的函式分別有以下幾種:
1.取整(大) select ceil(-1.001) value from dual 向大的進製
ceil(-0.12)
-----------
02.取整(小) select floor(-1.001) value from dual 向小的進製
floor(-0.12)
------------
-13.取整(擷取) select trunc(-1.002) value from dual 直接截斷小數點後的
trunc(3.2)
----------
3sql> select trunc(3.8) from dual;
trunc(3.8)
----------
34.取整(捨入) select round(-1.001) value from dual
sql> select round(-0.12) from dual;
round(-0.12)
------------
0sql> select round(-0.812) from dual;
round(-0.812)
-------------
-1
oracle 向上取整 向下取整
oracle對向上取整,向下取整,四捨五入取整都提供了函式 ceil函式實現向上取整 floor trunc實現向下取整 round實現四捨五入取整 ceil 向上取整,也就是取最接近待取整的數a,並且大於或等於a select ceil 10.12 from dual 返回11 select ce...
下取整函式的含義 取整函式解讀
關於 x 以及 的性質與應用摘要 x和x是非常重要的數論函式 其他許多數學分支都要涉及到,在國 內外的數學競賽中也經常出現含有x和 x的問題 這類問題新穎獨特 頗具啟發性。本文主要討論x以及 x的性質,和x以及 x在數學中的應用,以及x 以及x在數學競賽中的應用。取整函式 小數函式 性質 應用 例題...
關於erlang的向上取整和向下取整
在erlang的api中,erlang trunc 1 是就近取整,erlang round 1是四捨五入的,1 向上取整 2 ceil n 3 t trunc n 4case n t of 5true t 6false 1 t 7end.1 向下取整 2 floor x 3 t trunc x 4...