From 7dedfba8003e198aaa6a27fbad177d1589ff9c4e Mon Sep 17 00:00:00 2001 From: Anna Date: Mon, 25 Jan 2021 23:32:05 +0300 Subject: [PATCH] fix link --- docs/en/sql-reference/statements/create/table.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/statements/create/table.md b/docs/en/sql-reference/statements/create/table.md index 5bce4231a31..9bf2cab8743 100644 --- a/docs/en/sql-reference/statements/create/table.md +++ b/docs/en/sql-reference/statements/create/table.md @@ -266,7 +266,7 @@ It’s possible to use tables with [ENGINE = Memory](../../../engines/table-engi 'REPLACE' query allows you to update the data in the table atomically. !!!note "Note" - This query is supported only for [Atomic](../../../engines/database_engines/atomic.md) database engine. + This query is supported only for [Atomic](../../../engines/database-engines/atomic.md) database engine. If you need to delete some data from a table, you can create a new table and fill it with a `SELECT` statement that doesn't retrieve unwanted data, then drop the old table and rename the new one: