Column.IsIn 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
IsIn(Boolean[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(Decimal[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(Double[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(Int16[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(Int32[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(Int64[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(Single[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(String[]) |
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments. |
IsIn(Boolean[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params bool[] list);
member this.IsIn : bool[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As Boolean()) As Column
Parameters
- list
- Boolean[]
List of values to check the column against
Returns
Column object
Applies to
IsIn(Decimal[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params decimal[] list);
member this.IsIn : decimal[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As Decimal()) As Column
Parameters
- list
- Decimal[]
List of values to check the column against
Returns
Column object
Applies to
IsIn(Double[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params double[] list);
member this.IsIn : double[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As Double()) As Column
Parameters
- list
- Double[]
List of values to check the column against
Returns
Column object
Applies to
IsIn(Int16[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params short[] list);
member this.IsIn : int16[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As Short()) As Column
Parameters
- list
- Int16[]
List of values to check the column against
Returns
Column object
Applies to
IsIn(Int32[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params int[] list);
member this.IsIn : int[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As Integer()) As Column
Parameters
- list
- Int32[]
List of values to check the column against
Returns
Column object
Applies to
IsIn(Int64[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params long[] list);
member this.IsIn : int64[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As Long()) As Column
Parameters
- list
- Int64[]
List of values to check the column against
Returns
Column object
Applies to
IsIn(Single[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params float[] list);
member this.IsIn : single[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As Single()) As Column
Parameters
- list
- Single[]
List of values to check the column against
Returns
Column object
Applies to
IsIn(String[])
A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.
public Microsoft.Spark.Sql.Column IsIn (params string[] list);
member this.IsIn : string[] -> Microsoft.Spark.Sql.Column
Public Function IsIn (ParamArray list As String()) As Column
Parameters
- list
- String[]
List of values to check the column against
Returns
Column object