is the following logic possible in Kusto:
let flag = True;
let view = {
Table1
if flag:
| union
Table2
};
Thanks,
is the following logic possible in Kusto:
let flag = True;
let view = {
Table1
if flag:
| union
Table2
};
Thanks,
see: Kusto, Performing operations based on a condition
union (function1 | where flag), (function2 | where not(flag))