Scalar FunctionsDynamic / JSON Functions
zip
Zip two or more dynamic arrays element-wise.
Shorter inputs are padded with null so the output length matches the longest input, matching Microsoft Kusto.
Syntax
zip(arg)Parameters
Prop
Type
Returns: dynamic
Examples
Example 1
print zip(dynamic([1, 2, 3]), dynamic(["a", "b", "c"]))| print_0 (dynamic) |
|---|
| [[1,"a"],[2,"b"],[3,"c"]] |