本文主要是介绍mysql从一个表导入另一个表_sql 一个表中的数据怎么导入到另一个表里,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
展开全部
1、创建两张测试表32313133353236313431303231363533e59b9ee7ad9431333431373862,
create table test_imp1(id number, value varchar2(20));
create table test_imp2(id number, value varchar2(20));
2、表1插入7条测试数据,表2不做任务处理,
insert into test_imp1 values(1,'001');
insert into test_imp1 values(2,'001');
insert into test_imp1 values(2,'002');
insert into test_imp1 values(2,'002');
insert into test_imp1 values(2,'002');
insert into test_imp1 values(3,'003');
insert into test_imp1 values(3,'003');
3、将test_imp1表的记录插入test_imp2表,insert into test_imp2 select * from test_imp1, 有7条记录插入,
4、查询表test_imp2中记录,select t.*, rowid from test_imp2 t;与test_imp1的记录一致;
这篇关于mysql从一个表导入另一个表_sql 一个表中的数据怎么导入到另一个表里的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!