Skip to content

Instantly share code, notes, and snippets.

@vs4vijay
Last active April 18, 2025 18:44
Show Gist options
  • Save vs4vijay/d17efddb2b297838cae0f49f6fbfe390 to your computer and use it in GitHub Desktop.
Save vs4vijay/d17efddb2b297838cae0f49f6fbfe390 to your computer and use it in GitHub Desktop.
Just another Kusto Hacker
range x from 1 to 4 step 1
| extend part = case(x == 1, "Just", x == 2, "another", x == 3, "Kusto", "hacker")
| summarize result = strcat_array(make_list(part), " ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment