hash_combine()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
2 つ以上のハッシュのハッシュ値を結合します。
構文
hash_combine(
h1 ,
h2 [,
h3 ...])
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | 説明 |
---|---|---|---|
h1、 h2、... hN | long |
✔️ | 結合するハッシュ値。 |
返品
指定されたスカラーの結合後のハッシュ値。
例
print value1 = "Hello", value2 = "World"
| extend h1 = hash(value1), h2=hash(value2)
| extend combined = hash_combine(h1, h2)
出力
value1 | value2 | h1 | h2 | 結合済み |
---|---|---|---|---|
Hello | World | 753694413698530628 | 1846988464401551951 | -1440138333540407281 |