Skip to content

Commit

Permalink
Update quick-start.md
Browse files Browse the repository at this point in the history
modified very to every
  • Loading branch information
vishxm authored Jul 6, 2024
1 parent 9743983 commit 496217d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Here are a few examples.
-- Update every even value by adding 100 to it
UPDATE delta.`/tmp/delta-table` SET id = id + 100 WHERE id % 2 == 0;

-- Delete very even value
-- Delete every even value
DELETE FROM delta.`/tmp/delta-table` WHERE id % 2 == 0;

-- Upsert (merge) new data
Expand Down

0 comments on commit 496217d

Please sign in to comment.