isnotnull()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
如果自變數不是 Null,則傳 true
回 。
已被取代的別名: notnull()
語法
isnotnull(
value)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | Description |
---|---|---|---|
value | 純量 | ✔️ | 要檢查是否為 null 的值。 |
傳回
true
如果 值 不是 Null,則 false
為 ,否則為 。
範例
尋找有開始位置的風暴事件。
StormEvents
| where isnotnull(BeginLat) and isnotnull(BeginLon)