In the column "grape" there are data composed of two names, for example "chenin blanc" How do I indicate that there is a space in those names?
This was my attempt
df_04 = vinos_df.select(countDistinct("name")).
df_041= df_04.filter(df_04.grape.like("% %")).show()