当前位置:  开发笔记 > 数据库 > 正文

如果IN子查询没有行,如何返回所有行?

如何解决《如果IN子查询没有行,如何返回所有行?》经验,为你挑选了1个好方法。

以下是示例查询

Select *
  from tb.Users u
 where u.Approved = 1
   and u.userID IN ( SELECT us.UserID us
                       FROM tb.UserStatementes us
                      WHERE us.LogDate between date1 and date2 )

我需要选择IN子句中的所有用户,但是如果子查询没有返回记录,我需要选择所有用户(即忽略IN子句)



1> SqlZim..:
Select *
  from tb.Users u
 where u.Approved = 1
   and (
    u.userID IN ( SELECT us.UserID us
                        FROM tb.UserStatementes us
                       WHERE us.LogDate between date1 and date2 
                       )
    or not exists (
        select 1
          from tb.UserStatementes us
          where us.LogDate between date1 and date2
        )
      )

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有