Power ^

Operator: ^

circle-info

The Power operator (or exponentiation) ^ is used to calculate a number raised to a given power.

There is also a Power Function that can be used: Pow(value, power).

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

circle-check
chevron-rightvalue1 ^ value2hashtag

3 ^ 3 => 27

1234 ^ 1234 => infinity

-0.5 ^ 0.5 => Not a Number (NaN)

3 ^ "e" => expression type mismatch

Last updated

Was this helpful?