Getting started
User guides
Administration guides
Reference guides
Resources
Updated Aug 12, 2022
Send us feedback
map_keys
Returns an unordered array containing the keys of map.
map
map_keys(map)
map: A MAP expression.
An ARRAY where the element type matches the map key type.
> SELECT map_keys(map(1, 'a', 2, 'b')); [1,2]
map function
map_concat function
map_contains_key function
map_entries function
map_filter function
map_from_arrays function
map_from_entries function
map_values function
map_zip_with function