wenlong88 commented on a change in pull request #18363:
URL: https://github.com/apache/flink/pull/18363#discussion_r804462029
##########
File path: docs/content/docs/dev/table/sql/insert.md
##########
@@ -271,4 +276,37 @@ INSERT INTO students
```
+## Insert into multiple tables
+The `STATEMENT SET` can be used to insert data into multiple tables in a
statement.
+
+### Syntax
+
+```sql
+EXECUTE STATEMENT SET
+BEGIN
+insert_spec;
+...
+insert_spec;
+END;
+
+insert_spec:
+ {insert_from_select}|{insert_from_values}
Review comment:
the definition is the syntax defined above, we don't need to define
again, I think.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]