现在有一张表a,需要将这张表备份: 1.新建一张表,复制表a的表结构: create table b like a; 2.将表a的数据复制到表b中:insert into b select * from a ; 完成