update table1 set A=(select A from table2 where B=table1.B)

当table2.B不在table1.B中时,table1.A将被赋值为NULL,怎样避免这个问题?... 当table2.B不在table1.B中时,table1.A将被赋值为NULL,怎样避免这个问题? 展开
 我来答
邗启3V
2013-12-19 · TA获得超过7270个赞
知道大有可为答主
回答量:1413
采纳率:100%
帮助的人:1384万
展开全部

update table1 set A=(select A from table2 where B=table1.B)
改成
update table1 set A=NVL((select A from table2 where B=table1.B),VALUE);
当select A from table2 where B=table1.B 得到null值的时候,强制把null改成 VALUE(你自己根据需要赋值)
NVL(A,B)函数,当A为null的时候替换成B值
希望对你有帮助
乌微月2S
2013-12-19 · TA获得超过5037个赞
知道大有可为答主
回答量:5361
采纳率:42%
帮助的人:2869万
展开全部
用case when吧。
如果a是null一种处理方式,a不是null,又是一种处理方式。
追问
a一部分为null,一部分不为null ,能具体写一下sql语句吗?
追答
select case when A is null then (select A from table1 where (条件)) else a  end  
from table2 where B=table1.B
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小辛邮电
2018-08-13
知道答主
回答量:1
采纳率:0%
帮助的人:830
展开全部
update table1 set A=(select A from table2 where B=table1.B) where exists (select * from table2 where B=table1.B)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
温月heaven
2013-12-19 · 超过42用户采纳过TA的回答
知道答主
回答量:113
采纳率:100%
帮助的人:97万
展开全部
select case 语法;
select case when sysdate is null then 1 when sysdate is not null then 2 end daytime from dual
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式