Getting started
User guides
Administration guides
Reference guides
Resources
Updated Aug 04, 2022
Send us feedback
map_entries
Returns an unordered array of all entries in map.
map
map_entries(map)
map: A MAP expression.
An ARRAY of STRUCTs holding key-value pairs.
> SELECT map_entries(map(1, 'a', 2, 'b')); [{1, a}, {2, b}]
map function
map_concat function
map_from_entries function
map_filter function
map_from_arrays function
map_keys function
map_values function
map_zip_with function