Skip to main content

map

Returns an empty map. Supported Signatures
๐Ÿ”— Official Documentation

map_concat

Returns the union of all the given maps. If a key is found in multiple given maps, that keyโ€™s value in the resulting map comes from the last one of those maps. Supported Signatures
๐Ÿ”— Official Documentation

map_entries

Returns an array of all entries in the given map. Supported Signatures
๐Ÿ”— Official Documentation

map_filter

Constructs a map from those entries of map for which function returns true. Supported Signatures
๐Ÿ”— Official Documentation

map_from_entries

Returns a map created from the given array of entries. Supported Signatures
๐Ÿ”— Official Documentation

map_keys

Returns all the keys in the map x. Supported Signatures
๐Ÿ”— Official Documentation

map_values

Returns all the values in the map x. Supported Signatures
๐Ÿ”— Official Documentation

map_zip_with

Merges the two given maps into a single map by applying function to the pair of values with the same key. For keys only presented in one map, NULL will be passed as the value for the missing key. Supported Signatures
๐Ÿ”— Official Documentation

multimap_from_entries

Returns a multimap created from the given array of entries. Each key can be associated with multiple values. Supported Signatures
๐Ÿ”— Official Documentation

transform_keys

Returns a map that applies function to each entry of map and transforms the keys. Supported Signatures
๐Ÿ”— Official Documentation

transform_values

Returns a map that applies function to each entry of map and transforms the values. Supported Signatures
๐Ÿ”— Official Documentation