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 値になります。
SQL/2008 POWER 関数は、オプションの SQL/2008 言語機能 T621、「Enhanced numeric functions」の一部です。
次の文は、値 64 を返します。
SELECT POWER( 2, 6 );