赞
踩
create table new_table_name select * from old_table_name;
这种方法的一个最不好的地方就是新表中没有了旧表的primary key、Extra(auto_increment)等属性。
create table new_table_name select * from old_table_name where 1=2;
或
create table new_table_name like old_table_name;
insert into new_table_name select * from old_table_name;
insert into new_table_name(字段1,字段2,字段3) select (字段1,字段2,字段3) from old_table_name;
完全复制
insert into db1.table1 select * from db2.table2;
不复制重复记录
insert into db1.table1 selec
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。