In Kusto, can I do this?
let my_var = "prefix";
let my_custom_col = strcat(my_var, "_something");
my_tab | extend my_custom_col = "5"
I tried it but it creates a column with name, my_custom_col not with the name prefix_something.
Is it possible to use a variable as a column name in Kusto?