这个查询语句为什么会出现“单行子查询返回多行”错误?

selectccode,cName,uppercodefromAwhereuppercode!=0and(selectuppercodefromAwhereccodein... select ccode,cName,uppercode from A
where uppercode!=0 and (select uppercode from A where ccode in (select uppercode from A))!=0;

为什么会出现“单行子查询返回多行”错误?
and 前面的 uppercode!=0执行没有问题,但后面的子查询就报错了
展开
 我来答
jsczwangx
2013-10-29 · TA获得超过1222个赞
知道小有建树答主
回答量:777
采纳率:100%
帮助的人:628万
展开全部
(select uppercode from A where ccode in (select uppercode from A))!=0

这条语句有问题哦,不能这样写的,写成这样试试。
select ccode,cName,uppercode from A t1
where uppercode!=0 and exists (select 1 from A t2 where t1.ccode=t2.ccode);
来自:求助得到的回答
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
翔阿狗
2013-10-29 · TA获得超过208个赞
知道小有建树答主
回答量:452
采纳率:0%
帮助的人:200万
展开全部
查询出来多于一个值,条件判断的话必须用单个值才行
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
落月Prc
推荐于2018-04-12 · TA获得超过2789个赞
知道大有可为答主
回答量:2011
采纳率:100%
帮助的人:2433万
展开全部
select ccode,cName,uppercode from A 
  where uppercode!=0 
  and exists(select uppercode from A where ccode in (select uppercode from A) and uppercode!=0);
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
szm341
2013-10-29 · TA获得超过6726个赞
知道大有可为答主
回答量:5005
采纳率:100%
帮助的人:5157万
展开全部
说的是(select uppercode from A where ccode in (select uppercode from A))!=0;这句
这句的子查询返回的uppercode有多个值
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式