Functions.ElementAt(Column, Object) 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.
Returns element of array at given index in value
if column is array.
Returns value for the given key in value
if column is map.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ElementAt(Microsoft.Spark.Sql.Column column, object value);
[<Microsoft.Spark.Since("2.4.0")>]
static member ElementAt : Microsoft.Spark.Sql.Column * obj -> Microsoft.Spark.Sql.Column
Public Shared Function ElementAt (column As Column, value As Object) As Column
Parameters
- column
- Column
Column to apply
- value
- Object
Value to locate
Returns
Column object
- Attributes