1

is the following logic possible in Kusto:

let flag = True;

let view = {

Table1
if flag:
| union
Table2

};

Thanks,

Fabian
  • 63
  • 4

1 Answers1

1

see: Kusto, Performing operations based on a condition

union (function1 | where flag), (function2 | where not(flag))
Fabian
  • 63
  • 4