Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application Insights Analytics - Query union of 2 or more tables

How can I union tables and then apply a where filter? basically i want to find all items with the operation_Id == X

like image 586
Leonardo Avatar asked Mar 09 '23 08:03

Leonardo


1 Answers

You can do this by specifying the tables for a union.

union table1, table2 | where operation_Id == "X"
like image 83
James Davis - MSFT Avatar answered May 16 '23 05:05

James Davis - MSFT