MySQL Tutorial/Math Numeric Functions/POW — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 13:44, 26 мая 2010
POW(X,Y), POWER(X,Y) returns the value of X raised to the power of Y.
mysql>
mysql> SELECT POW(2,2);
+----------+
| POW(2,2) |
+----------+
| 4 |
+----------+
1 row in set (0.02 sec)
mysql>
mysql> SELECT POW(2,-2);
+-----------+
| POW(2,-2) |
+-----------+
| 0.25 |
+-----------+
1 row in set (0.00 sec)
mysql>