snowflake.snowpark.functions.array_cat¶
- snowflake.snowpark.functions.array_cat(array1: ColumnOrName, array2: ColumnOrName) Column [source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.3.0/src/snowflake/snowpark/functions.py#L3542-L3550)¶
Returns the concatenation of two ARRAYs.
- Parameters:
array1 – Column containing the source ARRAY.
array2 – Column containing the ARRAY to be appended to array1.