pyspark column contains code example
Example 1: pyspark filter column contains
df.filter("location like '%google.com%'")
Example 2: pyspark filter column contains
df.filter(df.location.contains('google.com'))
df.filter("location like '%google.com%'")
df.filter(df.location.contains('google.com'))