微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

转载:http://blog.sina.com.cn/s/blog_b30080530101gmv0.html


在用临时表进行数据分页的过程中,发现用储存过程参数传递查询语句的条件,参数条件加到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



转载:http://blog.sina.com.cn/s/blog_b30080530101gmv0.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐