Syntax:POW(X,Y)Returns the value of X raised to the power of Y.
mysql> SELECT POW(2,2); -> 4mysql> SELECT POW(2,-2); -> 0.25