Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
数のべき乗を表す数を計算します。
POWER( numeric-expression-1, numeric-expression-2 )
numeric-expression-1 べき乗の底。
numeric-expression-2 指数。
DOUBLE
この関数は、引数を DOUBLE に変換し、倍精度浮動小数点で計算を行います。引数のいずれかが NULL の場合、結果は NULL 値になります。
次の文は、値 64 を返します。
SELECT POWER( 2, 6 );