Skip to content

Commit df450af

Browse files
committed
2 parents 02e1b4c + a4ccd99 commit df450af

File tree

43 files changed

+1408
-171
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1408
-171
lines changed

docs/doc/14-sql-commands/00-ddl/20-table/10-ddl-create-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ AS SELECT query
8080

8181
Creates a transient table.
8282

83-
Transient tables are used to hold transitory data that does not require a data protection or recovery mechanism. Dataebend does not hold historical data for a transient table so you will not be able to query from a previous version of the transient table with the Time Travel feature, for example, the [AT](./../../20-query-syntax/dml-at.md) clause in the SELECT statement will not work for transient tables. Please note that you can still [drop](./20-ddl-drop-table.md) and [undrop](./21-ddl-undrop-table.md) a transient table.
83+
Transient tables are used to hold transitory data that does not require a data protection or recovery mechanism. Dataebend does not hold historical data for a transient table so you will not be able to query from a previous version of the transient table with the Time Travel feature, for example, the [AT](./../../20-query-syntax/03-dml-at.md) clause in the SELECT statement will not work for transient tables. Please note that you can still [drop](./20-ddl-drop-table.md) and [undrop](./21-ddl-undrop-table.md) a transient table.
8484

8585
Transient tables help save your storage expenses because they do not need extra space for historical data compared to non-transient tables. See [example](#create-transient-table-1) for detailed explanations.
8686

docs/doc/14-sql-commands/00-ddl/20-table/60-optimize-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Snapshot, segment, and block are the concepts Databend uses for data storage. Da
1414

1515
Databend automatically creates table snapshots upon data updates. A snapshot represents a version of the table's segment metadata.
1616

17-
When working with Databend, you're most likely to access a snapshot with the snapshot ID when you retrieve and query a previous version of the table's data with the [AT](../../20-query-syntax/dml-at.md) clause.
17+
When working with Databend, you're most likely to access a snapshot with the snapshot ID when you retrieve and query a previous version of the table's data with the [AT](../../20-query-syntax/03-dml-at.md) clause.
1818

1919
A snapshot is a JSON file that does not save the table's data but indicate the segments the snapshot links to. If you run [FUSE_SNAPSHOT](../../../15-sql-functions/111-system-functions/fuse_snapshot.md) against a table, you can find the saved snapshots for the table.
2020

docs/doc/14-sql-commands/00-ddl/20-table/70-ddl-restore-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The capability to restore a table is subject to these conditions:
1414

1515
- You cannot roll back after restoring a table to a prior state, but you can restore the table again to an earlier state.
1616

17-
- Databend recommends this command for emergency recovery only. To query the history data of a table, use the [AT](../../20-query-syntax/dml-at.md) clause.
17+
- Databend recommends this command for emergency recovery only. To query the history data of a table, use the [AT](../../20-query-syntax/03-dml-at.md) clause.
1818

1919
## Syntax
2020

docs/doc/14-sql-commands/20-query-syntax/dml-select.md renamed to docs/doc/14-sql-commands/20-query-syntax/01-dml-select.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ SELECT number FROM numbers(3) AS a;
9999

100100
## AT Clause
101101

102-
The AT clause enables you to query previous versions of your data. For more information, see [AT](./dml-at.md).
102+
The AT clause enables you to query previous versions of your data. For more information, see [AT](./03-dml-at.md).
103103

104104
## WHERE Clause
105105

docs/doc/14-sql-commands/20-query-syntax/dml-with.md renamed to docs/doc/14-sql-commands/20-query-syntax/02-dml-with.md

File renamed without changes.
File renamed without changes.

docs/doc/14-sql-commands/20-query-syntax/dml-join.md renamed to docs/doc/14-sql-commands/20-query-syntax/04-dml-join.md

File renamed without changes.

docs/doc/14-sql-commands/20-query-syntax/dml-json-path.md renamed to docs/doc/14-sql-commands/20-query-syntax/20-dml-json-path.md

File renamed without changes.

docs/doc/14-sql-commands/80-setting-cmds/set-global.md renamed to docs/doc/14-sql-commands/80-setting-cmds/01-set-global.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: SET
44

55
Changes the value of a setting. To show all the current settings, use [SHOW SETTINGS](show-settings.md).
66

7-
See also: [UNSET](unset.md)
7+
See also: [UNSET](02-unset.md)
88

99
## Syntax
1010

docs/doc/14-sql-commands/80-setting-cmds/unset.md renamed to docs/doc/14-sql-commands/80-setting-cmds/02-unset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: UNSET
44

55
Sets one or more settings back to their default values. The settings will also be reset to the initial SESSION level if they were set to GLOBAL level. See [Examples](#examples) for how to reset a GLOBAL setting with UNSET.
66

7-
See also: [SET](set-global.md)
7+
See also: [SET](01-set-global.md)
88

99
## Syntax
1010

0 commit comments

Comments
 (0)