mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
35 lines
1.7 KiB
Markdown
35 lines
1.7 KiB
Markdown
---
|
|
slug: /en/sql-reference/statements/alter/update
|
|
sidebar_position: 40
|
|
sidebar_label: UPDATE
|
|
---
|
|
|
|
# ALTER TABLE … UPDATE Statements
|
|
|
|
``` sql
|
|
ALTER TABLE [db.]table [ON CLUSTER cluster] UPDATE column1 = expr1 [, ...] [IN PARTITION partition_id] WHERE filter_expr
|
|
```
|
|
|
|
Manipulates data matching the specified filtering expression. Implemented as a [mutation](/docs/en/sql-reference/statements/alter/index.md#mutations).
|
|
|
|
:::note
|
|
The `ALTER TABLE` prefix makes this syntax different from most other systems supporting SQL. It is intended to signify that unlike similar queries in OLTP databases this is a heavy operation not designed for frequent use.
|
|
:::
|
|
|
|
The `filter_expr` must be of type `UInt8`. This query updates values of specified columns to the values of corresponding expressions in rows for which the `filter_expr` takes a non-zero value. Values are casted to the column type using the `CAST` operator. Updating columns that are used in the calculation of the primary or the partition key is not supported.
|
|
|
|
One query can contain several commands separated by commas.
|
|
|
|
The synchronicity of the query processing is defined by the [mutations_sync](/docs/en/operations/settings/settings.md/#mutations_sync) setting. By default, it is asynchronous.
|
|
|
|
**See also**
|
|
|
|
- [Mutations](/docs/en/sql-reference/statements/alter/index.md#mutations)
|
|
- [Synchronicity of ALTER Queries](/docs/en/sql-reference/statements/alter/index.md#synchronicity-of-alter-queries)
|
|
- [mutations_sync](/docs/en/operations/settings/settings.md/#mutations_sync) setting
|
|
|
|
|
|
## Related content
|
|
|
|
- Blog: [Handling Updates and Deletes in ClickHouse](https://clickhouse.com/blog/handling-updates-and-deletes-in-clickhouse)
|