binary_not()
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns a bitwise negation of the input value.
Syntax
binary_not(
value)
Learn more about syntax conventions.
Parameters
Name | Type | Required | Description |
---|---|---|---|
value | long |
✔️ | The value to negate. |
Returns
Returns logical NOT operation on a number: value.
Example
binary_not(100)
Output
result |
---|
-101 |