not()
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Reverses the value of its bool
argument.
not(
expr)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
expr | scalar | ✔️ | An expression that evaluates to a boolean value. The result of this expression will be reversed. |
Returns the reversed logical value of its bool
argument.
print not(false) == true
Output
print_0 |
---|
true |