Reputation: 6754
I am using Databricks. In my notebook, I have a table (Delta table) and I want to delete all rows where the topic is 'CICD' from my table. I want to use SQL to do it.
Upvotes: 0
Views: 1679
Reputation: 6754
DELETE FROM databasename.my_bronze_table WHERE Topic == 'CICD'
After running the above code, it displayed the number of rows affected.
Upvotes: 1