From 8851c268c2cdd6d53aab81c19212b32bb97cdc5a Mon Sep 17 00:00:00 2001 From: Denny Crane Date: Thu, 23 Feb 2023 21:25:00 -0400 Subject: [PATCH] Update from.md --- docs/en/sql-reference/statements/select/from.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/statements/select/from.md b/docs/en/sql-reference/statements/select/from.md index 110889e0797..35c83ee783a 100644 --- a/docs/en/sql-reference/statements/select/from.md +++ b/docs/en/sql-reference/statements/select/from.md @@ -36,7 +36,7 @@ Queries that use `FINAL` are executed slightly slower than similar queries that **In most cases, avoid using `FINAL`.** The common approach is to use different queries that assume the background processes of the `MergeTree` engine have’t happened yet and deal with it by applying aggregation (for example, to discard duplicates). -`FINAL` be applied automatically using [FINAL](../../operations/settings/settings.md) setting to all tables in a query using a session or a user profile. +`FINAL` be applied automatically using [FINAL](../../../operations/settings/settings.md#final) setting to all tables in a query using a session or a user profile. ## Implementation Details