Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns a result of raising to power
pow(
base,
exponent )
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
base | int, real, or long | ✔️ | The base value. |
exponent | int, real, or long | ✔️ | The exponent value. |
Returns base raised to the power exponent: base ^ exponent.
print result=pow(2, 3)
Output
result |
---|
8 |