Kusto equivalent of SQL NOT IN
I am trying to identify what records exist in table 1 that are not in table 2 (so essentially using NOT IN) let outliers = Table 2 | project UniqueEventGuid; Table 1 |where UniqueEventGuid !in (outliers) |project UniqueEventGuid but getting 0 records back even though I know there are orphans in table 1. Is the… Read More Kusto equivalent of SQL NOT IN