ZIP_ALL
This page describes the ZIP_ALL function in Lenses SQL.
ZIP_ALL(array1, field1, array2, field2, …)Processors
SQL Studio
USE `kafka`;
SELECT
ZIP_ALL([1, 2], 'x', [3, 4, 5], 'y')
FROM numbers-data
LIMIT 1;{
"value": {
"ZIP_ALL": [
{
"x": 1,
"y": 3
},
{
"x": 2,
"y": 4
},
{
"x": null,
"y": 5
}
]
}
}Last updated
Was this helpful?

