存储过程SQL语句 not in问题
存储过程SQL语句中,使用notin进行查询,其中notin集合中的值为动态的(不确定),怎么实现当notin集合中的值为空时,整个查询结果的输出值都为空????????...
存储过程SQL语句中,使用not in进行查询,其中not in集合中的值为动态的(不确定),怎么实现当not in集合中的值为空
时,整个查询结果的输出值都为空????????????????
整个sql语句只有一个not in 语句
例如:
1、表名:room
roomid username
1 aa
1 bb
1 cc
1 dd
2 ee
2 ff
3 xx
(假如只有1、2、3三个房间)
2、表名:user
roomid username
4 zz
5 tt
判断user表中的人员是否在相应的房间中,如果不在,显示错误提示信息
select roomid,'房间号不存在‘
from user
where roomid not in (select distinct roomid from room )
union all
select roomid,'此人不在此房间中'
from user
where username not in (select a.username from room a,user b where a.roomid = b.roomid and a.username = b.username)
1、像这样的情况(假如这样的情况时成立的,),房间号就不正确,剩余的肯定就不用查询了,也是不正确的,怎么样才能让下面得操作不再执行。
2、如果not in 里面的结果是空,怎么让整体结果都显示空?
请高手指教!!!
先谢谢了!!
谢谢两位的指点,
第二个问题采用isnull我试过,好像也不行的。
问题补充:就是not in里面的查询结果为空时,怎么让整个查询结果只显示房间号不存在。而不用显示此人不在此房间的错误信息提示。(因为既然房间号都不存在了,此人怎么可能在此房间呢?)
不知道我这样描述的是否清楚。
不管怎么样都非常感谢两位的指点 展开
时,整个查询结果的输出值都为空????????????????
整个sql语句只有一个not in 语句
例如:
1、表名:room
roomid username
1 aa
1 bb
1 cc
1 dd
2 ee
2 ff
3 xx
(假如只有1、2、3三个房间)
2、表名:user
roomid username
4 zz
5 tt
判断user表中的人员是否在相应的房间中,如果不在,显示错误提示信息
select roomid,'房间号不存在‘
from user
where roomid not in (select distinct roomid from room )
union all
select roomid,'此人不在此房间中'
from user
where username not in (select a.username from room a,user b where a.roomid = b.roomid and a.username = b.username)
1、像这样的情况(假如这样的情况时成立的,),房间号就不正确,剩余的肯定就不用查询了,也是不正确的,怎么样才能让下面得操作不再执行。
2、如果not in 里面的结果是空,怎么让整体结果都显示空?
请高手指教!!!
先谢谢了!!
谢谢两位的指点,
第二个问题采用isnull我试过,好像也不行的。
问题补充:就是not in里面的查询结果为空时,怎么让整个查询结果只显示房间号不存在。而不用显示此人不在此房间的错误信息提示。(因为既然房间号都不存在了,此人怎么可能在此房间呢?)
不知道我这样描述的是否清楚。
不管怎么样都非常感谢两位的指点 展开
3个回答
展开全部
楼上的不排除投机取巧(褒义)呵呵、
如果user真的有存在的房号,人不在房间的问题,不与username比较是不是也显示不出来了呢。呵呵!
select roomid,'房间号不存在'
from [user]
where roomid not in (select distinct roomid from room )
union all
select roomid,'此人不在此房间中'
from [user]
where username not in (select a.username from room a,[user] b where a.roomid = b.roomid and a.username = b.username)
and roomid not in (select roomid
from [user]
where roomid not in (select distinct roomid from room ))
这个就OK了。
下面操作必须执行,要筛选人和房间的匹配哦,虽然办法垃圾,只是在外层查询筛选不存在的房间,不过也是一种办法哦。呵呵!~
第二问题我不是很明白你的意思。代替值为空可以用ISNULL。
如果user真的有存在的房号,人不在房间的问题,不与username比较是不是也显示不出来了呢。呵呵!
select roomid,'房间号不存在'
from [user]
where roomid not in (select distinct roomid from room )
union all
select roomid,'此人不在此房间中'
from [user]
where username not in (select a.username from room a,[user] b where a.roomid = b.roomid and a.username = b.username)
and roomid not in (select roomid
from [user]
where roomid not in (select distinct roomid from room ))
这个就OK了。
下面操作必须执行,要筛选人和房间的匹配哦,虽然办法垃圾,只是在外层查询筛选不存在的房间,不过也是一种办法哦。呵呵!~
第二问题我不是很明白你的意思。代替值为空可以用ISNULL。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select roomid,'房间号不存在‘
from user
where roomid not in (select distinct roomid from room )
union all
select username,'此人不在此房间中'
from user
where not exists (select a.username from room a,user b where a.roomid = b.roomid and a.username = b.username)
这样应该行了
from user
where roomid not in (select distinct roomid from room )
union all
select username,'此人不在此房间中'
from user
where not exists (select a.username from room a,user b where a.roomid = b.roomid and a.username = b.username)
这样应该行了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select roomid
,status = isnull((select 1 from room where user.roomid = roomid)
,'房间号不存在‘)
from user
union all
……
下面类似不写了
,status = isnull((select 1 from room where user.roomid = roomid)
,'房间号不存在‘)
from user
union all
……
下面类似不写了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询