oracle 将表a中符合条件的一列插入表b

表a中有字段id,index(空),表b中有字段id,index。要将表b中每个id所对应的index,相应地插入到表a中。insertinto语句怎么写?... 表a中有字段id,index(空),表b中有字段id,index。
要将表b中每个id所对应的index,相应地插入到表a中。insert into 语句怎么写?
展开
 我来答
亥凝思3q
2014-04-13 · TA获得超过313个赞
知道小有建树答主
回答量:400
采纳率:14%
帮助的人:174万
展开全部
merge into a
using b
on a.id=b.id
when matched then
insert values(b.id,b.index);
太平岁年丰9
2014-04-13 · TA获得超过1231个赞
知道小有建树答主
回答量:1017
采纳率:100%
帮助的人:1092万
展开全部
在a.id找到对应b.id,应该是更新a.index,不是插入
找不到才插入a 吧

merge into a

using b
on (a.id=b.id)
when matched then update set index=b.index
when not mached then insert values (b.id,b.index)
;
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友8d29a7a
2014-04-13
知道答主
回答量:2
采纳率:0%
帮助的人:3172
展开全部
insert into b (select * from a t where t1.id=xxx),这要求a和b表字段必须一致
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式