Skip to content

Commit

Permalink
[Improve][Connector-v2] Link issue apache#7276
Browse files Browse the repository at this point in the history
  • Loading branch information
dailai committed Jul 26, 2024
1 parent 4045ad3 commit d1f0464
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ CREATE TABLE sink_table WITH (
'user' = 'root',
'password' = 'Abc!@#135_seatunnel',
'generate_sink_sql' = 'true',
'database' = 'sink'
'database' = 'sink',
'table' = '${table_name}'
);

-- If it's multi-table synchronization, there's no need to set select columns.
-- You can directly use the syntax 'INSERT INTO sink_table SELECT source_table'.
INSERT INTO sink_table SELECT source_table;
INSERT INTO sink_table SELECT source_table;

0 comments on commit d1f0464

Please sign in to comment.