I'm writing a Spark-based app and have to drop some tables in Cassandra DB.
I know how to read from tables with spark.read.format("jdbc")
. I know how to save dataframe with df.write.format("jbdc")
.
But how can I drop a table that I don't need anymore?