Functions.ArrayJoin Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ArrayJoin(Column, String) |
Concatenates the elements of |
ArrayJoin(Column, String, String) |
Concatenates the elements of |
ArrayJoin(Column, String)
Concatenates the elements of column
using the delimiter
.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayJoin(Microsoft.Spark.Sql.Column column, string delimiter);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayJoin : Microsoft.Spark.Sql.Column * string -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayJoin (column As Column, delimiter As String) As Column
Parameters
- column
- Column
Column to apply
- delimiter
- String
Delimiter for join
Returns
Column object
- Attributes
Applies to
ArrayJoin(Column, String, String)
Concatenates the elements of column
using the delimiter
.
Null values are replaced with nullReplacement
.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayJoin(Microsoft.Spark.Sql.Column column, string delimiter, string nullReplacement);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayJoin : Microsoft.Spark.Sql.Column * string * string -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayJoin (column As Column, delimiter As String, nullReplacement As String) As Column
Parameters
- column
- Column
Column to apply
- delimiter
- String
Delimiter for join
- nullReplacement
- String
String to replace null value
Returns
Column object
- Attributes