把一个表的数据复制到另一个表。
SQL1=insert into table1(a,b,c) select d,e,f from table2
SQL2=insert into table1 select * from table2
table1 为新表 table2 为要复制的表
sql1:复制几个字段,字段类型必须相同
sql2:为复制全部字段
本文共 224 字,大约阅读时间需要 1 分钟。
把一个表的数据复制到另一个表。
SQL1=insert into table1(a,b,c) select d,e,f from table2
SQL2=insert into table1 select * from table2
table1 为新表 table2 为要复制的表
sql1:复制几个字段,字段类型必须相同
sql2:为复制全部字段
转载于:https://my.oschina.net/crazybird/blog/310471