Skip to content

Commit d9fd454

Browse files
committed
added
1 parent 53f253e commit d9fd454

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

docs/en/sql-reference/10-sql-commands/20-query-syntax/settings.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2-
title: SETTINGS
2+
title: SETTINGS Clause
33
---
44
import FunctionDescription from '@site/src/components/FunctionDescription';
55

66
<FunctionDescription description="Introduced or updated: v1.2.652"/>
77

88
The SETTINGS clause configures specific settings that influence the execution behavior of the SQL statement it precedes. To view the available settings in Databend and their values, use [SHOW SETTINGS](../50-administration-cmds/03-show-settings.md).
99

10+
See also: [SET](../50-administration-cmds/02-set-global.md)
11+
1012
## Syntax
1113

1214
```sql

docs/en/sql-reference/10-sql-commands/50-administration-cmds/02-set-global.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ title: SET
55
Changes the value of a system setting for the current session. To show all the current settings, use [SHOW SETTINGS](03-show-settings.md).
66

77
See also:
8+
- [SETTINGS Clause](../20-query-syntax/settings.md)
89
- [SET_VAR](03-set-var.md)
910
- [UNSET](02-unset.md)
1011

docs/en/sql-reference/10-sql-commands/50-administration-cmds/03-set-var.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ SET_VAR is used to specify optimizer hints within a single SQL statement, allowi
1111

1212
- Control the deduplication behavior on [INSERT](../10-dml/dml-insert.md), [UPDATE](../10-dml/dml-update.md), or [REPLACE](../10-dml/dml-replace.md) operations with the label *deduplicate_label*. For those operations with a deduplicate_label in the SQL statements, Databend executes only the first statement, and subsequent statements with the same deduplicate_label value are ignored, regardless of their intended data modifications. Please note that once you set a deduplicate_label, it will remain in effect for a period of 24 hours. To understand how the deduplicate_label assists in deduplication, see [Example 3: Set Deduplicate Label](#example-3-set-deduplicate-label).
1313

14-
See also: [SET](02-set-global.md)
14+
See also:
15+
- [SETTINGS Clause](../20-query-syntax/settings.md)
16+
- [SET](02-set-global.md)
1517

1618
## Syntax
1719

0 commit comments

Comments
 (0)