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,怎样避免这个问题?
展开
4个回答
展开全部
把
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值
希望对你有帮助
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值
希望对你有帮助
展开全部
用case when吧。
如果a是null一种处理方式,a不是null,又是一种处理方式。
如果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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update table1 set A=(select A from table2 where B=table1.B) where exists (select * from table2 where B=table1.B)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select case 语法;
select case when sysdate is null then 1 when sysdate is not null then 2 end daytime from dual
select case when sysdate is null then 1 when sysdate is not null then 2 end daytime from dual
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询