SQL Select语句

时间:2015-06-08 18:39:24

标签: sql sql-server

我有一个包含author字段和presenter字段的事件表。来自我个人表的人既可以是同一事件的作者也可以是演示者,也可以是演示者或作者。我需要根据人员ID和他们选择的类型或过滤器对结果集应用过滤器。我有的过滤器是:

全部:这将返回他们是作者或演示者的所有记录。

AllPresenter:所有记录作为演示者。

AllAuthor:作为作者的所有记录。

PresenterOnly:仅记录为演示者而非作者。

AuthorOnly:仅记录为作者而不是演示者。

PresenterAndAuthorOnly:他们是演示者和作者的所有记录。

我目前有一个使用外部ifs的存储过程,如下所示,我试图找到一种方法将所有这些类似的select语句合并为一个。我没有太多运气找到更好的解决方案,我想知道我是否错过了一项技术。

If (@filter = 'PandAOnly' or @filter = 'AllP' or @filter = 'AllA')
begin
    Select * from Event 
    Where 
        PresenterId = Case @personId is null then PresenterId else @personId end
        and 
        AuthorId = Case @personId  is null then AuthorId else @personId end
end
else if (@filter = 'All')
begin
    Select * from Event
    Where
        PresenterId = @personId 
        Or
        AuthorId = @personId 
end
else if (@fitler = 'POnly')
begin
   Select * from Event
   Where 
       PresenterId = @personId 
       and
       AuthorId <> @personId 
end
else
begin
    Select * from Event
    Where 
        AuthorId = @personId 
        and 
        PresenterId <> @personId 
end

1 个答案:

答案 0 :(得分:5)

Select * from Event 
Where 
   (
        ((@personId is null) OR (PresenterId =@personId ))
        and 
        ((@personId  is null) OR (AuthorId = @personId))
        AND 
        (@filter = 'PandAOnly' or @filter = 'AllP' or @filter = 'AllA')
    )
OR 
  (
       (PresenterId = @personId 
        Or
        AuthorId = @personId )
    AND (@filter = 'All')
  )
OR 
  (
       PresenterId = @personId 
       and
       AuthorId <> @personId 
       and 
       @fitler = 'POnly'
  )
OR 
 (
        AuthorId = @personId 
        and 
        PresenterId <> @personId 
       and 
       @fitler = 'AOnly'
 )

注意

我宁愿坚持使用存储过程,上述查询的执行计划将是可怕的:)