i'm writing pyspark script on Databricks notebook to insert/update/query cassandra tables, however I cannot find a way to delete rows from table, i tried spark sql:
spark.sql("DELETE from users_by_email where email_address IN ('[email protected]')")
I also don't see it's possible to delete data using dataframe. is there any workaround?