标签: azure azure-application-insights ms-app-analytics aiql
有没有一种较短的方法来检查某个属性,例如user_id是否不在给定列表中:
user_id
customEvents | where user_Id != 123 and user_Id != 234 and user_Id != 345
答案 0 :(得分:1)
您可以使用!in operator,如下所示的代码:
!in
customEvents | where user_Id !in (123,234,345)