在SQL中插入多行

Ale*_*lex 2 sql backup insert

如何将备份表中的数据恢复table1_bunew_table1具有相同结构的新表?我需要从插入所有的行table1_bunew_table1.

Mat*_*eid 5

INSERT INTO new_table1(Id, Field1)
      SELECT Id, Field1
        FROM table1_bu
Run Code Online (Sandbox Code Playgroud)