程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> SQLServer 存儲過程中不拼接SQL字符串實現多條件查詢

SQLServer 存儲過程中不拼接SQL字符串實現多條件查詢

編輯:關於SqlServer

在用臨時表進行數據分頁的過程中,發現用儲存過程參數傳遞查詢語句的條件,參數條件加到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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved