标签:存在 oat nbsp style tab 列表 意义 sel 复制
在一张已经存在数据的数据表的基础之上,将已经存在的数据进行复制,插入到对应的表中!
#先创建一张表
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;
标签:存在 oat nbsp style tab 列表 意义 sel 复制
原文地址:https://www.cnblogs.com/zhang19950924/p/13217240.html