Column.
between
True if the current column is between the lower bound and upper bound, inclusive.
New in version 1.3.0.
Changed in version 3.4.0: Supports Spark Connect.
Column
a boolean expression that boundary start, inclusive.
a boolean expression that boundary end, inclusive.
Column of booleans showing whether each element of Column is between left and right (inclusive).
Examples
>>> df = spark.createDataFrame( ... [(2, "Alice"), (5, "Bob")], ["age", "name"]) >>> df.select(df.name, df.age.between(2, 4)).show() +-----+---------------------------+ | name|((age >= 2) AND (age <= 4))| +-----+---------------------------+ |Alice| true| | Bob| false| +-----+---------------------------+