Column

Column.__getattr__(item)

An expression that gets an item at position ordinal out of a list, or gets an item by key out of a dict.

Column.__getitem__(k)

An expression that gets an item at position ordinal out of a list, or gets an item by key out of a dict.

Column.alias(*alias, **kwargs)

Returns this column aliased with a new name or names (in the case of expressions that return more than one column, such as explode).

Column.asc()

Returns a sort expression based on the ascending order of the column.

Column.asc_nulls_first()

Returns a sort expression based on ascending order of the column, and null values return before non-null values.

Column.asc_nulls_last()

Returns a sort expression based on ascending order of the column, and null values appear after non-null values.

Column.astype(dataType)

astype() is an alias for cast().

Column.between(lowerBound, upperBound)

True if the current column is between the lower bound and upper bound, inclusive.

Column.bitwiseAND(other)

Compute bitwise AND of this expression with another expression.

Column.bitwiseOR(other)

Compute bitwise OR of this expression with another expression.

Column.bitwiseXOR(other)

Compute bitwise XOR of this expression with another expression.

Column.cast(dataType)

Casts the column into type dataType.

Column.contains(other)

Contains the other element.

Column.desc()

Returns a sort expression based on the descending order of the column.

Column.desc_nulls_first()

Returns a sort expression based on the descending order of the column, and null values appear before non-null values.

Column.desc_nulls_last()

Returns a sort expression based on the descending order of the column, and null values appear after non-null values.

Column.dropFields(*fieldNames)

An expression that drops fields in StructType by name.

Column.endswith(other)

String ends with.

Column.eqNullSafe(other)

Equality test that is safe for null values.

Column.getField(name)

An expression that gets a field by name in a StructType.

Column.getItem(key)

An expression that gets an item at position ordinal out of a list, or gets an item by key out of a dict.

Column.ilike(other)

SQL ILIKE expression (case insensitive LIKE).

Column.isNotNull()

True if the current expression is NOT null.

Column.isNull()

True if the current expression is null.

Column.isin(*cols)

A boolean expression that is evaluated to true if the value of this expression is contained by the evaluated values of the arguments.

Column.like(other)

SQL like expression.

Column.name(*alias, **kwargs)

name() is an alias for alias().

Column.otherwise(value)

Evaluates a list of conditions and returns one of multiple possible result expressions.

Column.over(window)

Define a windowing column.

Column.rlike(other)

SQL RLIKE expression (LIKE with Regex).

Column.startswith(other)

String starts with.

Column.substr(startPos, length)

Return a Column which is a substring of the column.

Column.when(condition, value)

Evaluates a list of conditions and returns one of multiple possible result expressions.

Column.withField(fieldName, col)

An expression that adds/replaces a field in StructType by name.