|
数字截取:
select trunc(0.5) a,
trunc(0.125) b,
trunc(0.5, 2),
trunc(0.125, 2) c,
trunc(100, 2) d
from dual
说明:该函数可以指定截取的位数,当不指定截取位时,它只截取小数占左边的数字。
正弦、反正弦,双曲正弦:
select sin(0.1667) x, asin(0.5) y, sinh(0.5) z from dual
余弦、反余弦、双曲余弦:
select cos(0.1667) a, acos(0.5) y, cosh(0.5) z from dual
正切、反正切:
select tan(0.1667) x, atan(0.5) y, atan2(1, 2) z from dual
说明:atan2(x,y)函数表示,返回x/y的反正切等价于atan(x/y)。
|
|