MariaDB10.6 POW関数で累乗した値を取得する
環境
Windows 10 home 64bit
MariaDB 10.6.4
書式
POW( n ,m )
n ⇒ 数値式
m ⇒ 数値式
POW関数を使って、n乗を計算します。
使用例
SQL構文
SELECT POW( 2,3 ) resA,POW( -2,3 ) resB, POW( 0.5,3 ) resC;
実行結果
MariaDB [(none)]> SELECT POW( 2,3 ) resA,POW( -2,3 ) resB, POW( 0.5,3 ) resC; +------+------+-------+ | resA | resB | resC | +------+------+-------+ | 8 | -8 | 0.125 | +------+------+-------+ 1 row in set (0.228 sec)