当前位置:Gxlcms > mssql > 根据多条件查询临时表想得到不同结果集的方法

根据多条件查询临时表想得到不同结果集的方法

时间:2021-07-01 10:21:17 帮助过:89人阅读

当我写下如下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

您可能感兴趣的文章:

  • sql server 临时表 查找并删除的实现代码
  • SQLServer中临时表与表变量的区别分析
  • sqlserver 临时表的用法
  • sqlserver 临时表 Vs 表变量 详细介绍
  • sqlserver 动态创建临时表的语句分享
  • 关于sqlserver 2005 使用临时表的问题( Invalid object name #temptb)
  • mysql复制中临时表的运用技巧
  • mysql 临时表 cann''t reopen解决方案
  • SQL Server 向临时表插入数据示例
  • 浅析SQL server 临时表
  • MySQL使用临时表加速查询的方法
  • sql server创建临时表的两种写法和删除临时表
  • 对比Oracle临时表和SQL Server临时表的不同点

人气教程排行