ORACLE报错,单行子查询返回多行结果
updateodsstat.wid_serv_mon_2000partition(p21)asetis_one_card_num_virtual_flag=(select...
update odsstat.wid_serv_mon_2000 partition(p21) a
set is_one_card_num_virtual_flag = (select case when a.serv_id = b.serv_id then 1
else 0
end
from tmp_20151210_002 b where latn_id = 2000)
where exists (select 1 from tmp_20151210_002 b where a.serv_id = b.serv_id and latn_id = 2000);
COMMIT;
求解决方法 展开
set is_one_card_num_virtual_flag = (select case when a.serv_id = b.serv_id then 1
else 0
end
from tmp_20151210_002 b where latn_id = 2000)
where exists (select 1 from tmp_20151210_002 b where a.serv_id = b.serv_id and latn_id = 2000);
COMMIT;
求解决方法 展开
展开全部
你的子查询 select case when a.serv_id = b.serv_id then 1
else 0
end
from tmp_20151210_002 b where latn_id = 2000
返回多行吧
因为前面是等于号,所以后面的值只能是一个唯一的值。
else 0
end
from tmp_20151210_002 b where latn_id = 2000
返回多行吧
因为前面是等于号,所以后面的值只能是一个唯一的值。
追问
具体该怎么改呢,我改了好久都没能解决
追答
子查询关联条件不足吧,
你看一下在正确的业务逻辑下面,怎么样将这个sql 语句返回来只有一条数据就好了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询