Column.LessThanOrEqual(Column, Object) Operator

Definition

Apply "less than or equal to" operator for the given two columns.

public static Microsoft.Spark.Sql.Column operator <= (Microsoft.Spark.Sql.Column lhs, object rhs);
static member ( <= ) : Microsoft.Spark.Sql.Column * obj -> Microsoft.Spark.Sql.Column
Public Shared Operator <= (lhs As Column, rhs As Object) As Column

Parameters

lhs
Column

Column on the left side of the operator

rhs
Object

Column on the right side of the operator

Returns

New column after applying the operator

Applies to