Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
SQL LIKE pattern matching.
Syntax
like(other)
Parameters
| Parameter | Type | Description |
|---|---|---|
other |
str | SQL LIKE pattern string |
Returns
Column (boolean)
Examples
df = spark.createDataFrame(
[(2, "Alice"), (5, "Bob")], ["age", "name"])
df.filter(df.name.like('Al%')).collect()
# [Row(age=2, name='Alice')]