Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions docs/cn/guides/40-load-data/01-load/03-http.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
从远程文件导入数据
title: 从远程文件导入数据
sidebar_label: 远程文件
Comment on lines +1 to 2

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Restore YAML frontmatter delimiters

In the CN remote-file load guide the frontmatter was changed to title/sidebar_label lines but the surrounding --- delimiters were removed, so Docusaurus will render these as body text instead of metadata. Without the --- block the page loses its frontmatter (title/sidebar label), meaning the Chinese sidebar entry for this guide will not be generated and the title will appear inline in the content.

Useful? React with 👍 / 👎.

---

要将远程文件数据加载到 Databend 中,可以使用 [COPY INTO](/sql/sql-commands/dml/dml-copy-into-table) 命令。该命令支持从多种数据源(包括远程文件)轻松地将数据复制到 Databend。通过 COPY INTO 命令,您可以指定源文件位置、文件格式等相关参数来定制导入过程。请注意,文件必须是 Databend 支持的格式,否则无法导入数据。有关 Databend 支持的文件格式的更多信息,请参阅 [输入输出文件格式](/sql/sql-reference/file-format-options)。

Expand Down Expand Up @@ -73,4 +71,4 @@ SELECT * FROM books;
│ Transaction Processing │ Jim Gray │ 1992 │
│ Readings in Database Systems │ Michael Stonebraker │ 2004 │
└──────────────────────────────────┴─────────────────────┴───────┘
```
```
3 changes: 1 addition & 2 deletions docs/cn/sql-reference/10-sql-commands/00-ddl/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ title: DDL(Data Definition Language)命令
| **[数据库](00-database/index.md)** | 创建、修改和删除数据库 |
| **[表](01-table/index.md)** | 创建、修改和管理表 |
| **[视图 (View)](05-view/index.md)** | 基于查询创建和管理虚拟表 |
| **[字典 (Dictionary)](17-dictionary/index.md)** | 创建用于数据丰富的键值查找表 |

## 性能和索引

Expand Down Expand Up @@ -59,4 +58,4 @@ title: DDL(Data Definition Language)命令
| **[计算集群 (Warehouse)](19-warehouse/index.md)** | 管理用于查询执行的计算资源 |
| **[工作负载组 (Workload Group)](20-workload-group/index.md)** | 控制资源分配和优先级 |
| **[事务 (Transaction)](14-transaction/index.md)** | 管理数据库事务 |
| **[变量 (Variable)](15-variable/index.md)** | 设置和使用会话/全局变量 |
| **[变量 (Variable)](15-variable/index.md)** | 设置和使用会话/全局变量 |
Loading