...
Numeric literal example:
d-codelang-syntax | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| POW
| |||||||||
pow(10,3) |
Output:
...
Returns the value of 10 3, which is 1000
.
Column reference example:
d-codelang-syntax | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| POW
| |||||||||
pow(MyValue,2) |
Output:
...
Returns the value of the MyValue
column raised to the power of 2 (squared).
D s | ||
---|---|---|
|
d-codelang-syntax | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| POW
| |||||||||
pow(base_numeric_value, exp_numeric_value) |
...