SQLServer 預存程序中不拼接SQL字串實現多條件查詢

來源:互聯網
上載者:User

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.