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