方法一:
STEP1:
drop table if exists student; //删除原有表
STEP2:
create table dust select * from student;//用于复制前未创建新表dust的情况下
方法二:
insert into dust select * from student;//已经创建了新表dust的情况下
转载请注明出处
《MySQL将查询保存到表中》https://www.ywlib.com/archives/13.html (from 一闻自习室)