rt

解决方案 »

  1.   

    insert into a select * from b
      

  2.   

    直接用SQL语句实现吧!如果新表格存在
    insert into table_new select * from table_old;不存在
    create table table_new like table_old;
    insert into table_new select * from table_old;
      

  3.   

    or  这种没有索引,您需要对照一下表结构哦!create table table_new select * from table_old;