共用方式為


coalesce()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

評估表達式清單,並傳回第一個非 Null(或字串的非空白)表達式。

語法

coalesce(arg,arg_2,[arg_3,...])

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
arg 純量 ✔️ 要評估的運算式。

注意

  • 所有自變數都必須是相同的類型。
  • 最多支援 64 個自變數。

傳回

第一 個arg 的值,其值不是 null (或不是字串表達式的空白)。

範例

print result=coalesce(tolong("not a number"), tolong("42"), 33)

輸出

result
42