Note
Kailangan ng pahintulot para ma-access ang page na ito. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
Applies to:
Databricks SQL
Databricks Runtime
Creates a map with a pair of the keys and values arrays.
Syntax
map_from_arrays(keys, values)
Arguments
keys: An ARRAY expression without duplicates or NULL.values: An ARRAY expression of the same cardinality askeys
Returns
A MAP where keys are of the element type of keys and values are of the element type of values.
Azure Databricks raises DUPLICATED_MAP_KEY if keys contains duplicates.
Common error conditions
Examples
> SELECT map_from_arrays(array(1.0, 3.0), array('2', '4'));
{1.0 -> 2, 3.0 -> 4}
> SELECT map_from_arrays(array(1, 1), array('a', 'b'));
Error: DUPLICATED_MAP_KEY