Deleting rows from a Delta Lake table
This section explains how to delete rows from a Delta Lake table.
Suppose you have the following Delta table with four rows:
+-------+----------+
| num | letter |
|-------+----------|
| 1 | a |
| 2 | b |
| 3 | c |
| 4 | d |
+-------+----------+
Here's how to delete all the rows where the num
is greater than 2:
Here are the contents of the Delta table after the delete operation has been performed:
dt.delete()
accepts any SQL where
clause. If no predicate is provided, all rows will be deleted.
Read more in the API docs