This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-1.3 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit f170713ac837de551dff5f1d19f23a2f716d8ace Author: YangJie <[email protected]> AuthorDate: Mon Oct 27 20:31:13 2025 +0800 [doc] Fix typo in flink/sql-ddl.md (#6476) --- docs/content/flink/sql-ddl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/flink/sql-ddl.md b/docs/content/flink/sql-ddl.md index 4626704270..21845a59be 100644 --- a/docs/content/flink/sql-ddl.md +++ b/docs/content/flink/sql-ddl.md @@ -213,7 +213,7 @@ note that partition fields and primary key fields can not be specified. ## Create Table As Select -Table can be created and populated by the results of a query, for example, we have a sql like this: `CREATE TABLE table_b AS SELECT id, name FORM table_a`, +Table can be created and populated by the results of a query, for example, we have a sql like this: `CREATE TABLE table_b AS SELECT id, name FROM table_a`, The resulting table `table_b` will be equivalent to create the table and insert the data with the following statement: `CREATE TABLE table_b (id INT, name STRING); INSERT INTO table_b SELECT id, name FROM table_a;`
