Reference Guide
>
TDV Support for SQL Operators
>
Arithmetic Operators
>
Exponentiate
Exponentiate
Exponentiation (**) combines a number and an exponent. For example, 2**3 takes the number 2 to the exponent 3 and returns two cubed, or 8.
Syntax
number ** exponent
Example
10**4
This expression returns 10 to the fourth power, or 1000.