oracle数据库中,两表字段一样,现在要把表1的数据替换到表2里面去,怎么实现?
8个回答
展开全部
可以把表2删了,然后用create table 2 as select * from table 1 where 1=1;这样字段和数据就全部copy过来了,不知道是不是你想要的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假设 a表 栏位 id col1
假设 b表 栏位 id col2
你要的是不是对比a,b表中的栏位id,然后将col1的数据更新到col2 ?
如果是的话,可以这样写:
update b set b.col2=
(select a.col1 from a where a.id=b.id);
请测试,肯定行!
假设 b表 栏位 id col2
你要的是不是对比a,b表中的栏位id,然后将col1的数据更新到col2 ?
如果是的话,可以这样写:
update b set b.col2=
(select a.col1 from a where a.id=b.id);
请测试,肯定行!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是替换某一列?
update t2 set col2 = (select col2 from t1 where t1.id = t2.id)
where exists(select 1 from t1 where t2.id = t1.id)
还是要把所有行都复制过去?
insert into t2 select * from t1
update t2 set col2 = (select col2 from t1 where t1.id = t2.id)
where exists(select 1 from t1 where t2.id = t1.id)
还是要把所有行都复制过去?
insert into t2 select * from t1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
建议用merge into T1
using T2
on (t1.xx=t2.xx and t1.xx1=t2.xx1)
when matched then
update
set t1.xx2=t2.xx2,
t1.xx3=t2.xx3,
.......................以次写。
commit;
如果数据量大的话,效率比直接update要高N多。
using T2
on (t1.xx=t2.xx and t1.xx1=t2.xx1)
when matched then
update
set t1.xx2=t2.xx2,
t1.xx3=t2.xx3,
.......................以次写。
commit;
如果数据量大的话,效率比直接update要高N多。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
truncate table 表2;
insert into 表2(字段1,字段2,。。。 ) select 字段1,字段2,。。。 from 表1
insert into 表2(字段1,字段2,。。。 ) select 字段1,字段2,。。。 from 表1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询