Skip to content

Commit 4ffe49d

Browse files
authored
Update mutations.md
1 parent d86e33e commit 4ffe49d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/en/guides/developer/mutations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ ALTER TABLE [<database>.]<table> UPDATE <column> = <expression> WHERE <filter_ex
2929
1. A mutation like this allows updating replacing `visitor_ids` with new ones using a dictionary lookup:
3030

3131
```sql
32-
ALTER TABLE website.clicks
33-
UPDATE visitor_id = getDict('visitors', 'new_visitor_id', visitor_id)
34-
WHERE visit_date < '2022-01-01'
35-
```
32+
ALTER TABLE website.clicks
33+
UPDATE visitor_id = getDict('visitors', 'new_visitor_id', visitor_id)
34+
WHERE visit_date < '2022-01-01'
35+
```
3636

3737
2. Modifying multiple values in one command can be more efficient than multiple commands:
3838

0 commit comments

Comments
 (0)