POW
Syntax
POW(X,Y)
Description
Returns the value of X raised to the power of Y.
POWER() is a synonym.
Examples
SELECT POW(2,3); +----------+ | POW(2,3) | +----------+ | 8 | +----------+ SELECT POW(2,-2); +-----------+ | POW(2,-2) | +-----------+ | 0.25 | +-----------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.