SQLServer 存储过程中不拼接SQL字符串实现多条件查询

在用临时表进行数据分页的过程中,发现用储存过程参数传递查询语句的条件,参数条件加到sql 的where后面不能直接使用,解决这个问题只有一个办法,就是将sql语句和条件拼接成一个sql字符串然后执行,在拼接sql字符串时比较麻烦;如果sql语句简单,还好处理,如果几百行的存储过程就很痛苦了。

我就网上查找比较好的解决办法,突然发现《SQLServer 存储过程中不拼接SQL字符串实现多条件查询 》这篇文章,仔细看了一下,还真有“柳暗花明又一村”的感觉;在此与大家分享一下,也给自己做个记录。

下面是 不采用拼接SQL字符串实现多条件查询的解决方案

第一种写法是 感觉代码有些冗余 
if (@addDate is not null) and (@name <> '')  
      select * from table where addDate = @addDate and name = @name 
else if (@addDate is not null) and (@name ='')  
      select * from table where addDate = @addDate 
else if(@addDate is  null) and (@name <> '')  
      select * from table where and name = @name 
else if(@addDate is  null) and (@name = '') 
select * from table

第二种写法是

select * from table where (addDate = @addDate or @addDate is null) and (name = @name or @name = '') 
第三种写法是

SELECT * FROM table where 
addDate = CASE @addDate IS NULL THEN addDate ELSE @addDate END, 
name = CASE @name WHEN '' THEN name ELSE @name END

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值