Get started
Load & manage data
Work with data
Administration
Reference & resources
CLUSTER BY
mask
ROW FILTER
Atualizado 01/11/2024
Send us feedback
map_values
Applies to: Databricks SQL Databricks Runtime
Returns an unordered array containing the values of map.
map
map_values(map)
map: A MAP expression.
An ARRAY where the element type matches the map value type.
> SELECT map_values(map(1, 'a', 2, 'b')); [a,b]
[ ] (bracket sign) operator
map function
map_concat function
map_entries function
map_filter function
map_from_arrays function
map_from_entries function
map_keys function
map_zip_with function