1. 表结构完全一样 insert into 表1 select * from 表2
2. 表结构不一样(这种情况下得指定列名) insert into 表(列名1,列名2,列名3) select 列1,列2,列3 from 表2