检查值是否不在Application Insights查询语言的列表中?

时间:2018-08-16 14:03:13

标签: azure azure-application-insights ms-app-analytics aiql

有没有一种较短的方法来检查某个属性,例如user_id是否不在给定列表中:

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

1 个答案:

答案 0 :(得分:1)

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

customEvents 
| where user_Id !in (123,234,345)