publicstaticvoidmain(String[] args) { StringoriginalSql="SELECT * FROM example_table etAsn, main_tab_2 mt2 left join left_table lt, table_sec tsc WHERE column IN (SELECT other_column FROM nested_example_table xxx where id in (select id from level3 yyy))"; // String originalSql = "INSERT into example_table values (1,2,3)"; // String originalSql = "INSERT into example_table select c1, c2 from table_sec"; // 这种无法替换 table_sec // String originalSql = "update example_table tt left join table_sec lxx set id=1 where id in (select id from nested_example_table xx)"; // String originalSql = "delete from example_table a right join table_sec xx where id in (select id from nested_example_table)"; // String originalSql = "drop table example_table"; // String originalSql = "TRUNCATE table example_table"; Map<String, String> replacements = Map.of( "example_table", "新的_example_table", "nested_example_table", "新的_nested_example_table", "main_tab_2", "新的_main_tab_2", "level3", "新的_level3", "left_table", "新的_left_table", "table_sec", "新的_table_sec" );
原来的SQL是: SELECT*FROM example_table etAsn, main_tab_2 mt2 leftjoin left_table lt, table_sec tsc WHEREcolumnIN (SELECT other_column FROM nested_example_table xxx where id in (select id from level3 yyy)) 改变后的SQL是: SELECT*FROM 新的_example_table etAsn, 新的_main_tab_2 mt2 LEFTJOIN 新的_left_table lt, 新的_table_sec tsc WHEREcolumnIN (SELECT other_column FROM 新的_nested_example_table xxx WHERE id IN (SELECT id FROM 新的_level3 yyy))
原来的SQL是: INSERTinto example_table select c1, c2 from table_sec 改变后的SQL是: INSERTINTO 新的_example_table SELECT c1, c2 FROM table_sec -- 这里注意,table_sec没有被替换
🔄测试 update 语句
运行结果:
1 2 3 4
原来的SQL是: update example_table tt leftjoin table_sec lxx set id=1where id in (select id from nested_example_table xx) 改变后的SQL是: UPDATE 新的_example_table tt LEFTJOIN 新的_table_sec lxx SET id =1WHERE id IN (SELECT id FROM 新的_nested_example_table xx)
❌测试 delete 语句
运行结果:
1 2 3 4
原来的SQL是: deletefrom example_table a rightjoin table_sec xx where id in (select id from nested_example_table) 改变后的SQL是: DELETEFROM 新的_example_table a RIGHTJOIN 新的_table_sec xx WHERE id IN (SELECT id FROM 新的_nested_example_table)
🅾测试 drop 语句
运行结果:
1 2 3 4 5
原来的SQL是: droptable example_table 改变后的SQL是: DROPtable IF EXISTS 新的_example_table
测试 truncate 语句
运行结果:
1 2 3 4
原来的SQL是: droptable example_table 改变后的SQL是: DROPtable IF EXISTS 新的_example_table