怎样用sql语句,在oracle中将一个表中查出来的字段插入另外一个表中的相应字段

 我来答
绪宏放竹浓
2019-10-02 · TA获得超过3.2万个赞
知道大有可为答主
回答量:1.2万
采纳率:31%
帮助的人:612万
展开全部
兄弟,这是更新原有数据,而不是插入新数据,表述要准确,使用关联更新即可
update
sis
a
set
a.sid=(select
outid
from
b_cust
b
where
b.idcardno=a.cardno
where
rownum=1)
where
exists
(select
1
from
b_cust
c
where
c.idcardno=a.cardno)
强伟娄萌
2019-10-01 · TA获得超过2.9万个赞
知道大有可为答主
回答量:1.1万
采纳率:30%
帮助的人:824万
展开全部
LZ的意思是查出b_cust表中的b_cust.idcardno=sis.cardno的所有记录中的outid插入到sis表中对应的sid列吧
用游标来做试试:
create
or
replace
procedure
pro_test
as
cursor
cur_test
is
select
outid,idcardno
from
b_cust,sis
where
idcardno=cardno;
begin
for
I
in
cur_test
loop
update
sis
set
sid=I.outid
where
cardno=I.idcardno;
end
loop;
end;
/
exec
pro_test;
楼下的哥们我知道这是update操作,确实是我表述不清楚了。。。汗。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式