INSERT Statement
INSERT statements are used to add rows to a table.
Run an INSERT statement
Java
Single INSERT statement can be executed through the executeSql() method of the TableEnvironment. The executeSql() method for INSERT statement will submit a Flink job immediately, and return a TableResult instance which associates the submitted job. Multiple INSERT statements can be executed through the addInsertSql() method of the StatementSet which can be created by the TableEnvironment.createStatementSet() method. The addInsertSql() method is a lazy execution, they will be executed only when StatementSet.execute() is invoked.
The following examples show how to run a single INSERT statement in TableEnvironment, run multiple INSERT statements in StatementSet.
Scala
Single INSERT statement can be executed through the executeSql() method of the TableEnvironment. The executeSql() method for INSERT statement will submit a Flink job immediately, and return a TableResult instance which associates the submitted job. Multiple INSERT statements can be executed through the addInsertSql() method of the StatementSet which can be created by the TableEnvironment.createStatementSet() method. The addInsertSql() method is a lazy execution, they will be executed only when StatementSet.execute() is invoked.
The following examples show how to run a single INSERT statement in TableEnvironment, run multiple INSERT statements in StatementSet.
Python
Single INSERT statement can be executed through the execute_sql() method of the TableEnvironment. The execute_sql() method for INSERT statement will submit a Flink job immediately, and return a TableResult instance which associates the submitted job. Multiple INSERT statements can be executed through the add_insert_sql() method of the StatementSet which can be created by the TableEnvironment.create_statement_set() method. The add_insert_sql() method is a lazy execution, they will be executed only when StatementSet.execute() is invoked.
The following examples show how to run a single INSERT statement in TableEnvironment, run multiple INSERT statements in StatementSet.
SQL CLI
Single INSERT statement can be executed in SQL CLI.
The following examples show how to run a single INSERT statement in SQL CLI.
Java
TableEnvironment tEnv = TableEnvironment.create(...);// register a source table named "Orders" and a sink table named "RubberOrders"tEnv.executeSql("CREATE TABLE Orders (`user` BIGINT, product VARCHAR, amount INT) WITH (...)");tEnv.executeSql("CREATE TABLE RubberOrders(product VARCHAR, amount INT) WITH (...)");// run a single INSERT query on the registered source table and emit the result to registered sink tableTableResult tableResult1 = tEnv.executeSql("INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE product LIKE '%Rubber%'");// get job status through TableResultSystem.out.println(tableResult1.getJobClient().get().getJobStatus());//----------------------------------------------------------------------------// register another sink table named "GlassOrders" for multiple INSERT queriestEnv.executeSql("CREATE TABLE GlassOrders(product VARCHAR, amount INT) WITH (...)");// run multiple INSERT queries on the registered source table and emit the result to registered sink tablesStatementSet stmtSet = tEnv.createStatementSet();// only single INSERT query can be accepted by `addInsertSql` methodstmtSet.addInsertSql("INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE product LIKE '%Rubber%'");stmtSet.addInsertSql("INSERT INTO GlassOrders SELECT product, amount FROM Orders WHERE product LIKE '%Glass%'");// execute all statements togetherTableResult tableResult2 = stmtSet.execute();// get job status through TableResultSystem.out.println(tableResult2.getJobClient().get().getJobStatus());
Scala
val tEnv = TableEnvironment.create(...)// register a source table named "Orders" and a sink table named "RubberOrders"tEnv.executeSql("CREATE TABLE Orders (`user` BIGINT, product STRING, amount INT) WITH (...)")tEnv.executeSql("CREATE TABLE RubberOrders(product STRING, amount INT) WITH (...)")// run a single INSERT query on the registered source table and emit the result to registered sink tableval tableResult1 = tEnv.executeSql("INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE product LIKE '%Rubber%'")// get job status through TableResultprintln(tableResult1.getJobClient().get().getJobStatus())//----------------------------------------------------------------------------// register another sink table named "GlassOrders" for multiple INSERT queriestEnv.executeSql("CREATE TABLE GlassOrders(product VARCHAR, amount INT) WITH (...)")// run multiple INSERT queries on the registered source table and emit the result to registered sink tablesval stmtSet = tEnv.createStatementSet()// only single INSERT query can be accepted by `addInsertSql` methodstmtSet.addInsertSql("INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE product LIKE '%Rubber%'")stmtSet.addInsertSql("INSERT INTO GlassOrders SELECT product, amount FROM Orders WHERE product LIKE '%Glass%'")// execute all statements togetherval tableResult2 = stmtSet.execute()// get job status through TableResultprintln(tableResult2.getJobClient().get().getJobStatus())
Python
table_env = TableEnvironment.create(...)# register a source table named "Orders" and a sink table named "RubberOrders"table_env.execute_sql("CREATE TABLE Orders (`user` BIGINT, product STRING, amount INT) WITH (...)")table_env.execute_sql("CREATE TABLE RubberOrders(product STRING, amount INT) WITH (...)")# run a single INSERT query on the registered source table and emit the result to registered sink tabletable_result1 = table_env \.execute_sql("INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE product LIKE '%Rubber%'")# get job status through TableResultprint(table_result1get_job_client().get_job_status())#----------------------------------------------------------------------------# register another sink table named "GlassOrders" for multiple INSERT queriestable_env.execute_sql("CREATE TABLE GlassOrders(product VARCHAR, amount INT) WITH (...)")# run multiple INSERT queries on the registered source table and emit the result to registered sink tablesstmt_set = table_env.create_statement_set()# only single INSERT query can be accepted by `add_insert_sql` methodstmt_set \.add_insert_sql("INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE product LIKE '%Rubber%'")stmt_set \.add_insert_sql("INSERT INTO GlassOrders SELECT product, amount FROM Orders WHERE product LIKE '%Glass%'")# execute all statements togethertable_result2 = stmt_set.execute()# get job status through TableResultprint(table_result2.get_job_client().get_job_status())
SQL CLI
Flink SQL> CREATE TABLE Orders (`user` BIGINT, product STRING, amount INT) WITH (...);[INFO] Table has been created.Flink SQL> CREATE TABLE RubberOrders(product STRING, amount INT) WITH (...);Flink SQL> SHOW TABLES;OrdersRubberOrdersFlink SQL> INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE product LIKE '%Rubber%';[INFO] Submitting SQL update statement to the cluster...[INFO] Table update statement has been successfully submitted to the cluster:
Insert from select queries
Query Results can be inserted into tables by using the insert clause.
Syntax
[EXECUTE] INSERT { INTO | OVERWRITE } [catalog_name.][db_name.]table_name [PARTITION part_spec] [column_list] select_statementpart_spec:(part_col_name1=val1 [, part_col_name2=val2, ...])column_list:(col_name1 [, column_name2, ...])
OVERWRITE
INSERT OVERWRITE will overwrite any existing data in the table or partition. Otherwise, new data is appended.
PARTITION
PARTITION clause should contain static partition columns of this inserting.
COLUMN LIST
Given a table T(a INT, b INT, c INT), Flink supports INSERT INTO T(c, b) SELECT x, y FROM S. The expectation is that ‘x’ is written to column ‘c’ and ‘y’ is written to column ‘b’ and ‘a’ is set to NULL (assuming column ‘a’ is nullable).
Examples
-- Creates a partitioned tableCREATE TABLE country_page_view (user STRING, cnt INT, date STRING, country STRING)PARTITIONED BY (date, country)WITH (...)-- Appends rows into the static partition (date='2019-8-30', country='China')INSERT INTO country_page_view PARTITION (date='2019-8-30', country='China')SELECT user, cnt FROM page_view_source;-- Key word EXECUTE can be added at the beginning of Insert to indicate explicitly that we are going to execute the statement,-- it is equivalent to Statement without the key word.EXECUTE INSERT INTO country_page_view PARTITION (date='2019-8-30', country='China')SELECT user, cnt FROM page_view_source;-- Appends rows into partition (date, country), where date is static partition with value '2019-8-30',-- country is dynamic partition whose value is dynamic determined by each row.INSERT INTO country_page_view PARTITION (date='2019-8-30')SELECT user, cnt, country FROM page_view_source;-- Overwrites rows into static partition (date='2019-8-30', country='China')INSERT OVERWRITE country_page_view PARTITION (date='2019-8-30', country='China')SELECT user, cnt FROM page_view_source;-- Overwrites rows into partition (date, country), where date is static partition with value '2019-8-30',-- country is dynamic partition whose value is dynamic determined by each row.INSERT OVERWRITE country_page_view PARTITION (date='2019-8-30')SELECT user, cnt, country FROM page_view_source;-- Appends rows into the static partition (date='2019-8-30', country='China')-- the column cnt is set to NULLINSERT INTO country_page_view PARTITION (date='2019-8-30', country='China') (user)SELECT user FROM page_view_source;
Insert values into tables
The INSERT…VALUES statement can be used to insert data into tables directly from SQL.
Syntax
[EXECUTE] INSERT { INTO | OVERWRITE } [catalog_name.][db_name.]table_name VALUES values_row [, values_row ...]values_row:(val1 [, val2, ...])
OVERWRITE
INSERT OVERWRITE will overwrite any existing data in the table. Otherwise, new data is appended.
Examples
CREATE TABLE students (name STRING, age INT, gpa DECIMAL(3, 2)) WITH (...);INSERT INTO studentsVALUES ('fred flintstone', 35, 1.28), ('barney rubble', 32, 2.32);
Insert into multiple tables
The STATEMENT SET can be used to insert data into multiple tables in a statement.
Syntax
EXECUTE STATEMENT SETBEGINinsert_statement;...insert_statement;END;insert_statement:<insert_from_select>|<insert_from_values>
Examples
CREATE TABLE students (name STRING, age INT, gpa DECIMAL(3, 2)) WITH (...);EXECUTE STATEMENT SETBEGININSERT INTO studentsVALUES ('fred flintstone', 35, 1.28), ('barney rubble', 32, 2.32);INSERT INTO studentsVALUES ('fred flintstone', 35, 1.28), ('barney rubble', 32, 2.32);END;