insert into 表1 select * from 表2
insert into 表1 (列名1,列名2,列名3) select 列1,列2,列3 from 表2
insert into 表1 (列名1,列名2,列名3) values(列1,列2,(select 列3 from 表2));