Column.BitwiseOr(Column, Column) Operator

Definition

Apply boolean OR operator for the given two columns.

public static Microsoft.Spark.Sql.Column operator | (Microsoft.Spark.Sql.Column lhs, Microsoft.Spark.Sql.Column rhs);
static member ( ||| ) : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Operator Or (lhs As Column, rhs As Column) As Column

Parameters

lhs
Column

Column on the left side of the operator

rhs
Column

Column on the right side of the operator

Returns

New column after applying the operator

Applies to