snowflake.snowpark.functions.map_cat¶
- snowflake.snowpark.functions.map_cat(col1: Union[Column, str], col2: Union[Column, str], *cols: Union[Column, str])[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/functions.py#L7505-L7554)¶
Returns the concatenatation of two or more MAPs.
- Parameters:
col1 – The source map
col2 – The map to be appended to col1
cols – More maps to be appended
- Example::