mysql备份表

 

现在有张表为student,我想将这个表里面的数据复制到一个为dust的新表中去。
answer 01:
create table dust select * from student;//用于复制前未创建新表dust的情况下
answer 02:
insert into dust select * from student;//已经创建了新表dust的情况下

posted @ 2020-07-18 14:40  wjl910  阅读(53)  评论(0)    收藏  举报