共计 280 个字符,预计需要花费 1 分钟才能阅读完成。
很简单的 MySQL 同实例下复制表的方法,可以略过。
需求:
在 test 库下创建表,要求导入 hellodb.students 的数据。
方法 1:
use test;
create table t2 as select * from hellodb.students;
方法 2:
use test;
create table t1 like hellodb.students;
insert into t1 select * from hellodb.students;
方法 2 的效果更好,具体可以看下图。
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-04/142837.htm
正文完
星哥玩云-微信公众号