sqlserver2005,sql语句循环查询,合并结果集 10
请教高人,一条select语句:Selectnamefromtableawhere(n1='40732'orn2='40732'orn3='40732')anddate>...
请教高人,一条select语句:
Select name from table a where (n1='40732'or n2='40732' or n3='40732') and date>='2014-01-01'--(实际上比这复杂的多)。
要反复替换'40732'为别的数字,比如40733、40744……,大概几十个吧,且要求每一个select语句的结果集都要合并在一起,用select…union all select…union all…,可以实现,但是,不能这样连写几十个吧。有没有什么简便的方法实现呢?
40732、40733、40744……,这些数字代码是从另一个select语句得到的“select code from table d”
可以用while循环、游标、变量,或是别的方法实现吗,代码怎样写?
Select name from table a where (n1='40732'or n2='40732' or n3='40732') and date>='2014-01-01'中的40732代表一个id,where (n1='40732'or n2='40732' or n3='40732') 是同一个id(40732),每次替换,都是替换成一个相同的id。 展开
Select name from table a where (n1='40732'or n2='40732' or n3='40732') and date>='2014-01-01'--(实际上比这复杂的多)。
要反复替换'40732'为别的数字,比如40733、40744……,大概几十个吧,且要求每一个select语句的结果集都要合并在一起,用select…union all select…union all…,可以实现,但是,不能这样连写几十个吧。有没有什么简便的方法实现呢?
40732、40733、40744……,这些数字代码是从另一个select语句得到的“select code from table d”
可以用while循环、游标、变量,或是别的方法实现吗,代码怎样写?
Select name from table a where (n1='40732'or n2='40732' or n3='40732') and date>='2014-01-01'中的40732代表一个id,where (n1='40732'or n2='40732' or n3='40732') 是同一个id(40732),每次替换,都是替换成一个相同的id。 展开
2个回答
展开全部
你可以使用n1 in (4072,4073,.....)或者将数据放在某个表里,用 n1 in (select xx from...),这样语句就大大简化了,每个字段需要一个查询。
如果字段太多,那么去看看MSSQL的全文检索吧。
如果字段太多,那么去看看MSSQL的全文检索吧。
更多追问追答
追问
这样可以查出一个完整的不重复的记录集合,但没法用group分组(如果只有n1 in (select xx from...) ,没有or n2 in (select xx from...) ,可以分组),但结果要求是:记录肯定要分组后再合并,会有重复。
追答
用语句的话,就不要union,直接where n1 in select or n2 in select....
之后,再用嵌套查询,在结果集中使用group之类的东西。
select xxx,xxx from (select * from xxx where n1 in or n2 in) group by xxx
展开全部
n1 n2 n3 n4 是字段?那么n1 n2 n3 n4如何和你的code一一对应呢?
更多追问追答
追问
n1 n2 n3 n4 是字段名,其类型和d.code类型一样。我在想可不可以:set @x一个变量,然后while循环,select name from table a where (n1=@x or n2=@x or n3=@x) ,不知能否实现。不知@x怎样从“select code from table d”一个个的赋值。
追答
你的code表上应该有一个字段标识出哪行对应n1哪一行对应n2吧?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询