insert select、select into 的用法

insert into(列名) select 列名 from 表名 where  条件  --不创建表,只复制表数据

select 列名 into 表名(这个表名是不存在的) from 表名 where  条件,--创建一张新表,只复制选择的列名字段数据

原文地址:https://www.cnblogs.com/zhang9418hn/p/2294459.html