「MySQL」pow関数で累乗した値を取得する

2021年12月30日

書式1
POW(x,y)
書式2
POWER(x,y)
引数 x の y 乗 を取得します。
POW 関数は 1 番目の引数に指定した値を 2 番目の引数の値だけ累乗した値を取得します

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
select pow(4,3) resA, power(-8,3) resB, pow(2,-3) resC;
実行結果
resA resB resC
64 -512 0.125
select pow(4,3) resA, power(-8,3) resB, pow(2,-3) resC; 実行結果 resA resB resC 64 -512 0.125
select pow(4,3) resA, power(-8,3) resB, pow(2,-3) resC;

実行結果
resA	resB	resC
64	-512	0.125

 

MySQL

Posted by arkgame