有没有一种更简单的方法来检查一个属性,比如user_id是否不在给定的列表中:
customEvents
| where user_Id != 123
and user_Id != 234
and user_Id != 345发布于 2018-08-17 09:29:49
您可以使用!in operator,代码如下:
customEvents
| where user_Id !in (123,234,345)https://stackoverflow.com/questions/51878960
复制相似问题