【发布时间】:2019-01-23 12:38:24
【问题描述】:
是否有更短的方法来检查属性,例如 user_id 是否不在给定列表中:
customEvents
| where user_Id != 123
and user_Id != 234
and user_Id != 345
【问题讨论】:
标签: azure azure-application-insights ms-app-analytics aiql
是否有更短的方法来检查属性,例如 user_id 是否不在给定列表中:
customEvents
| where user_Id != 123
and user_Id != 234
and user_Id != 345
【问题讨论】:
标签: azure azure-application-insights ms-app-analytics aiql
你可以使用!inoperator,代码如下:
customEvents
| where user_Id !in (123,234,345)
【讨论】: