April 2008
Intermediate to advanced
566 pages
21h 55m
English
POW()
POW(number,exponent)
This function returns the result of raising the number given in the first argument to the exponent given in the second argument. It’s an alias of POWER(). Here is an example:
SELECT POW(2, 4); +-----------+ | POW(2, 4) | +-----------+ | 16.000000 | +-----------+
Read now
Unlock full access