程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 根據多條件查詢臨時表 想得到不同結果集的方法

根據多條件查詢臨時表 想得到不同結果集的方法

編輯:關於SqlServer
當我寫下如下sql語句時,我得到了輸入@c參數時想得到的結果集。
select * from @tb t where t.id in (select id from tb where f = @c)
但如果有@a,@b,@c,而它們分別想從@tb中得到不同的結果集,例如
代碼如下:

if @a is not null
begin
--得到@a想得到的
end
if @b is not null
begin
--得到@b想得到的
end
if @c is not null
begin
--得到@c想得到的
end

這樣做好像沒什麼問題,但如果@a和@b是一起的,甚至是@a,@b,@c,@d,@e,@f等等N多種條件組合,這樣就不好辦了。所以必須先build好@tb,最後一次性查詢
--構造@tb
select * from @tb
假如我已經通過@a,@b得到了一種@tb結果集,當我再次使用@c進行條件判斷時,這樣就會覆蓋剛才的結果。
可以采用“刪除不符合條件的記錄”的方法來做,由於@tb已經得到了@a,@b想得到的結果,所以只要刪除掉不符合@c的結果就行了。完。
代碼如下:

if @c is not null
begin
delete c from @tb c where c.id not in (select id from tb where f = @c)
end
select * from @tb
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved