加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

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

发布时间:2020-12-12 13:29:24 所属栏目:MsSql教程 来源:网络整理
导读:最近在工作中要使用存储过程,因为前端页面传过来的下拉菜单的值不固定,数据是这样的,0是全部,1是男,2是女,当选择全部时,要能查询出所有的用户,否则只能查询出来男的用户或者女的用户,一般都是在存储过程中写 declare @sql nvarchar(500),@str nvarc

最近在工作中要使用存储过程,因为前端页面传过来的下拉菜单的值不固定,数据是这样的,0是全部,1是男,2是女,当选择全部时,要能查询出所有的用户,否则只能查询出来男的用户或者女的用户,一般都是在存储过程中写

declare @sql nvarchar(500),@str nvarchar(20)

set?@str = 'and sex = 1'

set @sql = 'select * from 表 where id >0 '+ @str

exec sp_executesql?@sql ?或者 exec(@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://uule.iteye.com/blog/1988137

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读