时间:2021-07-01 10:21:17 帮助过:39人阅读
在一张已经存在数据的数据表的基础之上,将已经存在的数据进行复制,插入到对应的表中!
#先创建一张表
create table ruchong (
a int,
b float
);
#插入测试数据:
insert into ruchong values(10, 3.14),(23, 5.20);
insert into 表名 select * | 字段列表 from 表名;
#开始蠕虫复制
insert into ruchong select * from ruchong;
mysql-蠕虫复制--快速插入数据
标签:存在 oat nbsp style tab 列表 意义 sel 复制