snowflake.snowpark.functions.concat_ws¶
- snowflake.snowpark.functions.concat_ws(*cols: ColumnOrName) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.4.0/src/snowflake/snowpark/functions.py#L2557-L2582)¶
Concatenates two or more strings, or concatenates two or more binary values. If any of the values is null, the result is also null. The CONCAT_WS operator requires at least two arguments, and uses the first argument to separate all following arguments.
- Examples::