POWER() calculates the result of raising a base number to a specified exponent. This function is useful for mathematical calculations, scientific computations, and any operations requiring exponential values. It's equivalent to the exponentiation operator (^) in many programming languages.
POWER(base, exponent)
POWER() returns a numeric value, or 0 for invalid inputs
POWER(3, 2) = 9 (3 squared)
POWER(9, 0.5) = 3 (square root of 9)
POWER(3, 0) = 1 (any number to power 0)
POWER(3, -2) = 0.1111 (negative exponent)
POWER(2, 3) = 8 (2 cubed)
POWER(10, 2) = 100 (10 squared)
POWER(0, 0) = 0 (invalid input)
POWER(NULL, 2) = 0 (NULL handling)