lava-oushudb-dt-sql-parser/test/parser/flinksql/syntax/fixtures/insertMultipleTable.sql

22 lines
555 B
MySQL
Raw Normal View History

-- FlinkSQL 1.16insert multiple table statement
EXECUTE STATEMENT SET
BEGIN
INSERT INTO country_page_view
VALUES ('Chinese', 'mumiao', 18),
('Amercian', 'georage', 22);
INSERT INTO country_page_view
VALUES ('Chinese', 'mumiao', 18),
('Amercian', 'georage', 22);
END;
-- FlinkSQL 1.15insert multiple table statement
BEGIN STATEMENT SET;
INSERT INTO country_page_view
VALUES ('Chinese', 'mumiao', 18),
('Amercian', 'georage', 22);
INSERT INTO country_page_view
VALUES ('Chinese', 'mumiao', 18),
('Amercian', 'georage', 22);
END;