You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@doris.apache.org by GitBox <gi...@apache.org> on 2019/04/29 05:15:09 UTC

[GitHub] [incubator-doris] morningman commented on a change in pull request #1069: Add insert statement document

morningman commented on a change in pull request #1069: Add insert statement document
URL: https://github.com/apache/incubator-doris/pull/1069#discussion_r279238334
 
 

 ##########
 File path: docs/documentation/cn/sql-reference/sql-statements/insert.md
 ##########
 @@ -0,0 +1,80 @@
+# insert
+
+## Syntax
+
+```
+INSERT INTO table_name
+    [ (column [, ...]) ]
+    [ \[ hint [, ...] \] ]
+    { VALUES ( { expression | DEFAULT } [, ...] ) [, ...] | query }
+```
+
+## Description
+
+INSERT 向一张表里插入数据。用户可以插入一条或者多条数据通过 VALUES 语法,或者通过一个查询来插入0条或者多条数据。
 
 Review comment:
   用户可以插入一条或者多条数据通过 VALUES 语法,或者通过一个查询来插入0条或者多条数据。
   ->
   用户可以通过 VALUES 语法插入一条或者多条数据,或者通过一个查询来插入0条或者多条数据。
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@doris.apache.org
For additional commands, e-mail: dev-help@doris.apache.org