Syntax
POW(X,Y)
Purpose
POW() returns the result of raising X to the power of Y.
If either of X or Y is NULL, the return value is NULL.
Examples
obclient> SELECT POW(4,2), POW(4,-2), POW(1,NULL);
+----------+-----------+-------------+
| POW(4,2) | POW(4,-2) | POW(1,NULL) |
+----------+-----------+-------------+
| 16 | 0.0625 | NULL |
+----------+-----------+-------------+
1 row in set