Last active
April 18, 2025 18:44
-
-
Save vs4vijay/d17efddb2b297838cae0f49f6fbfe390 to your computer and use it in GitHub Desktop.
Just another Kusto Hacker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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