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

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

是否有更短的方法来检查属性(例如 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)

关于azure - 检查值是否不在 Application Insights 查询语言的列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51878960/

相关文章:

c# - 如何防止在未登录的情况下使用window azure媒体服务器的文件路径播放视频?

c# - 使用 azure 表存储进行分页(升序)

azure-application-insights - 在 Application Insights 中将变量与数组一起使用

azure - 如何在不显式指定名称的情况下将 json 键值对投影到列

Azure 数据库迁移服务卡在 "log shipping in progress"

node.js - 是否可以向 azure Blob 添加过滤器

asp.net-mvc - 可配置的 Application Insights 仪器 key

c# - 用于导出到 Power BI 的 Azure Application Insights 分析查询

azure - Application Insights Analytics - 2 个或更多表的查询并集

Azure Application Insights 查询共享同一变量