insert into values 和insert into select 以及 select
删除表之前的临时备份 ( select into from)
1 将表1 的 数据 插入到表2(不存在的表)
select * into table1 from table2 ;
2 数据插入(单条 插入)
insert into table1
(column1,column2,column3)
values (value1,value2,value3)
2 数据插入(多条 插入,table1 和table2 表结构一样)
insert into table1
select * from table2
原文链接:http://www.jxszl.com/biancheng/shujuku/445440.html