Skip to content

Commit 20d395a

Browse files
authored
Update mutations.md
1 parent a2b8514 commit 20d395a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/developer/mutations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ View the [`DELETE` statement](/sql-reference/statements/delete.md) docs page for
8989

9090
## Lightweight deletes {#lightweight-deletes}
9191

92-
Another option for deleting rows it to use the `DELETE FROM` command, which is referred to as a **lightweight delete**. The deleted rows are marked as deleted immediately and will be automatically filtered out of all subsequent queries, so you do not have to wait for a merging of parts or use the `FINAL` keyword. Cleanup of data happens asynchronously in the background.
92+
Another option for deleting rows is to use the `DELETE FROM` command, which is referred to as a **lightweight delete**. The deleted rows are marked as deleted immediately and will be automatically filtered out of all subsequent queries, so you do not have to wait for a merging of parts or use the `FINAL` keyword. Cleanup of data happens asynchronously in the background.
9393

9494
``` sql
9595
DELETE FROM [db.]table [ON CLUSTER cluster] [WHERE expr]

0 commit comments

Comments
 (0)