【功能】返回x的y次冪
【參數】x,y 數字型表達式
【返回】數字
【示例】
select power(2.5,2),power(1.5,0),power(20,-1) from dual;
返回:6.25,1,0.05
【相近】exp(y)
返回e的y次冪。(e為數學常量)
【關系】z=power(x,y),則y=1/log(z,x) (條件z,x>0)
【功能】返回x的y次冪
【參數】x,y 數字型表達式
【返回】數字
【示例】
select power(2.5,2),power(1.5,0),power(20,-1) from dual;
返回:6.25,1,0.05
【相近】exp(y)
返回e的y次冪。(e為數學常量)
【關系】z=power(x,y),則y=1/log(z,x) (條件z,x>0)
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。