We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d058a3 + 4ffe49d commit 3b3a901Copy full SHA for 3b3a901
docs/en/guides/developer/mutations.md
@@ -29,10 +29,10 @@ ALTER TABLE [<database>.]<table> UPDATE <column> = <expression> WHERE <filter_ex
29
1. A mutation like this allows updating replacing `visitor_ids` with new ones using a dictionary lookup:
30
31
```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
- ```
+ ALTER TABLE website.clicks
+ UPDATE visitor_id = getDict('visitors', 'new_visitor_id', visitor_id)
+ WHERE visit_date < '2022-01-01'
+ ```
36
37
2. Modifying multiple values in one command can be more efficient than multiple commands:
38
0 commit comments