This is an automated email from the ASF dual-hosted git repository. liaoxin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new 139706d1fd5 [improve](docs) fix and improve insert into manual (#1587) 139706d1fd5 is described below commit 139706d1fd55dee5cd0e6ca9db5793342daee501 Author: Kaijie Chen <c...@apache.org> AuthorDate: Thu Dec 26 23:03:06 2024 +0800 [improve](docs) fix and improve insert into manual (#1587) --- docs/data-operate/import/import-way/insert-into-manual.md | 4 +--- docs/data-operate/import/import-way/insert-into-values-manual.md | 4 +--- .../current/data-operate/import/import-way/insert-into-manual.md | 4 +--- .../data-operate/import/import-way/insert-into-values-manual.md | 4 +--- .../version-2.1/data-operate/import/import-way/insert-into-manual.md | 4 +--- .../data-operate/import/import-way/insert-into-values-manual.md | 4 +--- .../version-3.0/data-operate/import/import-way/insert-into-manual.md | 4 +--- .../data-operate/import/import-way/insert-into-values-manual.md | 4 +--- .../version-2.1/data-operate/import/import-way/insert-into-manual.md | 4 +--- .../data-operate/import/import-way/insert-into-values-manual.md | 4 +--- .../version-3.0/data-operate/import/import-way/insert-into-manual.md | 4 +--- .../data-operate/import/import-way/insert-into-values-manual.md | 4 +--- 12 files changed, 12 insertions(+), 36 deletions(-) diff --git a/docs/data-operate/import/import-way/insert-into-manual.md b/docs/data-operate/import/import-way/insert-into-manual.md index 8a387e76f40..a486c053227 100644 --- a/docs/data-operate/import/import-way/insert-into-manual.md +++ b/docs/data-operate/import/import-way/insert-into-manual.md @@ -1,6 +1,6 @@ --- { - "title": "Insert Into", + "title": "Insert Into Select", "language": "en" } --- @@ -26,8 +26,6 @@ under the License. The INSERT INTO statement supports importing the results of a Doris query into another table. INSERT INTO is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. -- INSERT INTO tbl SELECT... - ## Applicable scenarios 2. If a user wants to perform ETL on existing data in a Doris table and then import it into a new Doris table, the INSERT INTO SELECT syntax is applicable. diff --git a/docs/data-operate/import/import-way/insert-into-values-manual.md b/docs/data-operate/import/import-way/insert-into-values-manual.md index ce8dfab0cb8..b020e878cd6 100644 --- a/docs/data-operate/import/import-way/insert-into-values-manual.md +++ b/docs/data-operate/import/import-way/insert-into-values-manual.md @@ -24,9 +24,7 @@ specific language governing permissions and limitations under the License. --> -The INSERT INTO VALUES statement supports importing the results of a Doris query into another table. INSERT INTO VALUES is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO VALUES ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. - -- INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...) +The INSERT INTO VALUES statement supports importing values from SQL into a Doris table. INSERT INTO VALUES is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO VALUES ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. ## Applicable scenarios diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-manual.md index c306a77f585..8185d9bec0f 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-manual.md @@ -1,6 +1,6 @@ --- { - "title": "Insert Into", + "title": "Insert Into Select", "language": "zh-CN" } --- @@ -27,8 +27,6 @@ under the License. INSERT INTO 支持将 Doris 查询的结果导入到另一个表中。INSERT INTO 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 -- INSERT INTO tbl SELECT ... - ## 使用场景 1. 用户希望将已经在 Doris 表中的数据进行 ETL 转换并导入到一个新的 Doris 表中,此时适合使用 INSERT INTO SELECT 语法。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-values-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-values-manual.md index 6e2395ef8f9..6c121bdbbee 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-values-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/insert-into-values-manual.md @@ -25,9 +25,7 @@ under the License. --> -INSERT INTO VALUES 支持将 Doris 查询的结果导入到另一个表中。INSERT INTO VALUES 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO VALUES 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 - -- INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...) +INSERT INTO VALUES 语句支持将 SQL 中的值导入到 Doris 的表中。INSERT INTO VALUES 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO VALUES 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 ## 使用场景 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-manual.md index 0df15976a70..88e4053773a 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-manual.md @@ -1,6 +1,6 @@ --- { - "title": "Insert Into", + "title": "Insert Into Select", "language": "zh-CN" } --- @@ -27,8 +27,6 @@ under the License. INSERT INTO 支持将 Doris 查询的结果导入到另一个表中。INSERT INTO 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 -- INSERT INTO tbl SELECT ... - ## 使用场景 1. 用户希望将已经在 Doris 表中的数据进行 ETL 转换并导入到一个新的 Doris 表中,此时适合使用 INSERT INTO SELECT 语法。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md index 2ad47228da0..e5462ab7603 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md @@ -25,9 +25,7 @@ under the License. --> -INSERT INTO VALUES 支持将 Doris 查询的结果导入到另一个表中。INSERT INTO VALUES 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO VALUES 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 - -- INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...) +INSERT INTO VALUES 语句支持将 SQL 中的值导入到 Doris 的表中。INSERT INTO VALUES 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO VALUES 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 ## 使用场景 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-manual.md index 0df15976a70..88e4053773a 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-manual.md @@ -1,6 +1,6 @@ --- { - "title": "Insert Into", + "title": "Insert Into Select", "language": "zh-CN" } --- @@ -27,8 +27,6 @@ under the License. INSERT INTO 支持将 Doris 查询的结果导入到另一个表中。INSERT INTO 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 -- INSERT INTO tbl SELECT ... - ## 使用场景 1. 用户希望将已经在 Doris 表中的数据进行 ETL 转换并导入到一个新的 Doris 表中,此时适合使用 INSERT INTO SELECT 语法。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md index edee32bab1a..dc87f1a5df3 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md @@ -25,9 +25,7 @@ under the License. --> -INSERT INTO VALUES 支持将 Doris 查询的结果导入到另一个表中。INSERT INTO VALUES 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO VALUES 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 - -- INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...) +INSERT INTO VALUES 语句支持将 SQL 中的值导入到 Doris 的表中。INSERT INTO VALUES 是一个同步导入方式,执行导入后返回导入结果。可以通过请求的返回判断导入是否成功。INSERT INTO VALUES 可以保证导入任务的原子性,要么全部导入成功,要么全部导入失败。 ## 使用场景 diff --git a/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-manual.md b/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-manual.md index a3869067dc8..4550afc851b 100644 --- a/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-manual.md +++ b/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-manual.md @@ -1,6 +1,6 @@ --- { - "title": "Insert Into", + "title": "Insert Into Select", "language": "en" } --- @@ -26,8 +26,6 @@ under the License. The INSERT INTO statement supports importing the results of a Doris query into another table. INSERT INTO is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. -- INSERT INTO tbl SELECT... - ## Applicable scenarios 2. If a user wants to perform ETL on existing data in a Doris table and then import it into a new Doris table, the INSERT INTO SELECT syntax is applicable. diff --git a/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md b/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md index 38ba0b626e9..1c3195e6cc8 100644 --- a/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md +++ b/versioned_docs/version-2.1/data-operate/import/import-way/insert-into-values-manual.md @@ -24,9 +24,7 @@ specific language governing permissions and limitations under the License. --> -The INSERT INTO VALUES statement supports importing the results of a Doris query into another table. INSERT INTO VALUES is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO VALUES ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. - -- INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...) +The INSERT INTO VALUES statement supports importing values from SQL into a Doris table. INSERT INTO VALUES is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO VALUES ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. ## Applicable scenarios diff --git a/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-manual.md b/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-manual.md index a3869067dc8..4550afc851b 100644 --- a/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-manual.md +++ b/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-manual.md @@ -1,6 +1,6 @@ --- { - "title": "Insert Into", + "title": "Insert Into Select", "language": "en" } --- @@ -26,8 +26,6 @@ under the License. The INSERT INTO statement supports importing the results of a Doris query into another table. INSERT INTO is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. -- INSERT INTO tbl SELECT... - ## Applicable scenarios 2. If a user wants to perform ETL on existing data in a Doris table and then import it into a new Doris table, the INSERT INTO SELECT syntax is applicable. diff --git a/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md b/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md index fbbca75ed37..febd3b7c239 100644 --- a/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md +++ b/versioned_docs/version-3.0/data-operate/import/import-way/insert-into-values-manual.md @@ -24,9 +24,7 @@ specific language governing permissions and limitations under the License. --> -The INSERT INTO VALUES statement supports importing the results of a Doris query into another table. INSERT INTO VALUES is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO VALUES ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. - -- INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...) +The INSERT INTO VALUES statement supports importing values from SQL into a Doris table. INSERT INTO VALUES is a synchronous import method, where the import result is returned after the import is executed. Whether the import is successful can be determined based on the returned result. INSERT INTO VALUES ensures the atomicity of the import task, meaning that either all the data is imported successfully or none of it is imported. ## Applicable scenarios --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org