5

是否有更短的方法来检查属性user_id是否不在给定列表中:

customEvents 
| where user_Id != 123
    and user_Id != 234
    and user_Id != 345
4

1 回答 1

9

您可以使用!in operator,代码如下:

customEvents 
| where user_Id !in (123,234,345)
于 2018-08-17T01:29:48.900 回答