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
Combines hash values of two or more hashes.
hash_combine(
h1 ,
h2 [,
h3 ...])
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
h1, h2, ... hN | long |
✔️ | The hash values to combine. |
The combined hash value of the given scalars.
print value1 = "Hello", value2 = "World"
| extend h1 = hash(value1), h2=hash(value2)
| extend combined = hash_combine(h1, h2)
Output
value1 | value2 | h1 | h2 | combined |
---|---|---|---|---|
Hello | World | 753694413698530628 | 1846988464401551951 | -1440138333540407281 |