hash_many()

Learn how to use the hash_many() function to return a combined hash value of multiple values.

Returns a combined hash value of multiple values.

Syntax

hash_many(s1 , s2 [, s3 …])

Parameters

NameTypeRequiredDescription
s1, s2, …, sNscalar✔️The values to hash together.

Returns

The hash() function is applied to each of the specified scalars. The resulting hashes are combined into a single hash and returned.

Examples

print value1 = "Hello", value2 = "World"
| extend combined = hash_many(value1, value2)

Output

value1value2combined
HelloWorld-1440138333540407281