共用方式為


!~ (不等於)運算子

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

篩選不符合不區分大小寫字串的數據記錄集。

下表提供 (equals) 運算子的 == 比較:

Operator 描述 區分大小寫 範例 (yields true
== 等於 Yes "aBc" == "aBc"
!= 不等於 Yes "abc" != "ABC"
=~ 等於 No "abc" =~ "ABC"
!~ 不等於 No "aBc" !~ "xyz"

如需其他運算符的詳細資訊,以及判斷哪一個運算元最適合您的查詢,請參閱 數據類型字串運算元

效能祕訣

注意

效能取決於搜尋類型和數據結構。 如需最佳做法,請參閱 查詢最佳做法

可能的話,請使用區分大小寫 的 !=

語法

T | where 資料列表示式 !~ ()

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
T string ✔️ 要篩選其記錄的表格式輸入。
column string ✔️ 要篩選的數據行。
expression 純量 ✔️ 要搜尋的純量或常值表達式。

傳回

述詞為 true的 T 數據列。

範例

StormEvents
| summarize event_count=count() by State
| where (State !~ "texas") and (event_count > 3000)
| project State, event_count

輸出

州/省 event_count
堪薩斯州 3,166