ClickHouse/docs/en/sql-reference/statements/alter/update.md
Dmitriy aca04ebc87 Update files in the 'alter'.
Внес поправки в английскую версию, выполнил перевод на русский язык, подкорректировал некоторые файлы в 'ALTER'.
2020-12-02 23:26:48 +03:00

1.5 KiB

toc_priority toc_title
40 UPDATE

ALTER TABLE … UPDATE Statements

ALTER TABLE [db.]table UPDATE column1 = expr1 [, ...] WHERE filter_expr

Manipulates data matching the specified filtering expression. Implemented as a mutation.

!!! note "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 setting. By default, it is asynchronous.

See also