Application Insights Analytics - 查询两个或多个表的并集

Leo*_*rdo 3 azure azure-application-insights ms-app-analytics

如何联合表然后应用where过滤器?基本上我想找到所有项目operation_Id == X

Jam*_*SFT 7

您可以通过为union指定表来完成此操作.

union table1, table2 | where operation_Id == "X"
Run Code Online (Sandbox Code Playgroud)