这个查询语句为什么会出现“单行子查询返回多行”错误?
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执行没有问题,但后面的子查询就报错了 展开
where uppercode!=0 and (select uppercode from A where ccode in (select uppercode from A))!=0;
为什么会出现“单行子查询返回多行”错误?
and 前面的 uppercode!=0执行没有问题,但后面的子查询就报错了 展开
4个回答
展开全部
(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);
这条语句有问题哦,不能这样写的,写成这样试试。
select ccode,cName,uppercode from A t1
where uppercode!=0 and exists (select 1 from A t2 where t1.ccode=t2.ccode);
来自:求助得到的回答
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
查询出来多于一个值,条件判断的话必须用单个值才行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
说的是(select uppercode from A where ccode in (select uppercode from A))!=0;这句
这句的子查询返回的uppercode有多个值
这句的子查询返回的uppercode有多个值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询