Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns the concatenation strings separated by sep
.
Syntax
concat_ws(sep [, expr1 [, ...] ])
Arguments
sep
: An STRING expression.exprN
: EachexprN
can be either a STRING or an ARRAY of STRING.
Returns
The result type is STRING.
If sep
is NULL the result is NULL.
exprN
that are NULL are ignored.
If only the separator is provided, or all exprN
are NULL, an empty string.
Examples
> SELECT concat_ws(' ', 'Spark', 'SQL');
Spark SQL
> SELECT concat_ws('s');
''
> SELECT concat_ws(',', 'Spark', array('S', 'Q', NULL, 'L'), NULL);
Spark,S,Q,L