Functions.ArrayContains(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 null if the array is null, true if the array contains value
,
and false otherwise.
public static Microsoft.Spark.Sql.Column ArrayContains(Microsoft.Spark.Sql.Column column, object value);
static member ArrayContains : Microsoft.Spark.Sql.Column * obj -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayContains (column As Column, value As Object) As Column
Parameters
- column
- Column
Column to apply
- value
- Object
Value to check for existence
Returns
Column object