1、insert into table2(num,text)select num,text from table1;
该方法需要在复制之前创建表table2
2、SELECT vale1, value2 into Table2 from Table1
该方法需要在复制之前tables2表不存在。(mysql不支持该方法)
3、Create tabletable2 select * from table1;
该方法需要在复制之前tables2表不存在。
1、insert into table2(num,text)select num,text from table1;
该方法需要在复制之前创建表table2
2、SELECT vale1, value2 into Table2 from Table1
该方法需要在复制之前tables2表不存在。(mysql不支持该方法)
3、Create tabletable2 select * from table1;
该方法需要在复制之前tables2表不存在。