diff --git a/docs/en/query_language/alter.md b/docs/en/query_language/alter.md index 5d1c057f9c3a952837f26f01403c678a9ea0e949..707ff6ff3b4775d5efeb8085bad44da24f9bd70d 100644 --- a/docs/en/query_language/alter.md +++ b/docs/en/query_language/alter.md @@ -192,7 +192,7 @@ The following operations with [partitions](../operations/table_engines/custom_pa - [REPLACE PARTITION](#alter_replace-partition) - Copies the data partition from one table to another. - [ATTACH PARTITION FROM](#alter_attach-partition-from) – Copies the data partition from one table to another and adds. - [REPLACE PARTITION](#alter_replace-partition) - Copies the data partition from one table to another and replaces. -- [MOVE PARTITION](#alter_move-partition) - Move the data partition from one table to another. +- [MOVE PARTITION TO TABLE] (#alter_move_to_table-partition) - Move the data partition from one table to another. - [CLEAR COLUMN IN PARTITION](#alter_clear-column-partition) - Resets the value of a specified column in a partition. - [CLEAR INDEX IN PARTITION](#alter_clear-index-partition) - Resets the specified secondary index in a partition. - [FREEZE PARTITION](#alter_freeze-partition) – Creates a backup of a partition. @@ -285,7 +285,7 @@ For the query to run successfully, the following conditions must be met: - Both tables must have the same structure. - Both tables must have the same partition key. -#### MOVE PARTITION {#alter_move-partition} +#### MOVE PARTITION TO TABLE {#alter_move_to_table-partition} ``` sql ALTER TABLE table_source MOVE PARTITION partition_expr TO TABLE table_dest