POW(X,Y)
Returns the value of X raised to the power of Y.
POWER() is a synonym.
SELECT POW(2,3); +----------+ | POW(2,3) | +----------+ | 8 | +----------+ SELECT POW(2,-2); +-----------+ | POW(2,-2) | +-----------+ | 0.25 | +-----------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/pow/