Column Contains A String Pyspark Dataframe 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'))
Comments
Post a Comment