Syntax
POW(X,Y)
Purpose
You can call this function to return the value of X raised 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 (0.00 sec)