select into
SELECT vale1, value2 into Table2 from Table1
要求目标表Table2不存在,因为在插入时会自动创建表Table2
insert into select
Insert into Table2(field1,field2,…) select value1,value2,… from Table1
要求目标表Table2必须存在,因此 这种情况下 可以插入常量,
或者table2中有auto_increament关键字