是否有更短的方法来检查属性user_id
是否不在给定列表中:
customEvents
| where user_Id != 123
and user_Id != 234
and user_Id != 345
是否有更短的方法来检查属性user_id
是否不在给定列表中:
customEvents
| where user_Id != 123
and user_Id != 234
and user_Id != 345
您可以使用!in
operator,代码如下:
customEvents
| where user_Id !in (123,234,345)