Created
April 7, 2025 06:47
-
-
Save georgeOsdDev/e2ab9ce5b40b026966d3cdf9586e1dd4 to your computer and use it in GitHub Desktop.
My JAKH query2
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
// https://github.com/microsoft/just-another-kusto-hacker/tree/main | |
datatable(i1:string , i2:string)[ | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π ", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π ", | |
"π","π", | |
"π","π", | |
"π","π", | |
"π","π", | |
] | |
| extend i1 = unicode_codepoints_from_string(i1)[0] - 0x1F600, i2 = unicode_codepoints_from_string(i2)[0] - 0x1F600 | |
| extend a = array_concat(pack_array(" "), datetime_list_timezones()) | |
| summarize result = strcat_array(make_list(substring(a[i1], i2, 1)), "") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment