3个回答
展开全部
数据不多就直接放到临时表中,如:
declare @counts int
create table #temp(字段)
set @counts =0
while @counts <(select count(*) from 表)
begin
insert into #temp
select * from 表where各种条件
set @counts=@counts+1
end
select * from #temp
go
如果数据量较大,创建一个实体表,加上必要的索引以便查询
declare @counts int
create table #temp(字段)
set @counts =0
while @counts <(select count(*) from 表)
begin
insert into #temp
select * from 表where各种条件
set @counts=@counts+1
end
select * from #temp
go
如果数据量较大,创建一个实体表,加上必要的索引以便查询
展开全部
select * from A
UNION ALL
SELECT * FROM B
UNION ALL
SELECT * FROM C
???
UNION ALL
SELECT * FROM B
UNION ALL
SELECT * FROM C
???
更多追问追答
追问
declare @counts int
set @counts =0
while @counts <(select count(*) from 表)
begin
select * from 表where各种条件
end
go
这种
追答
你那个count是控制循环次数,没有办法的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from 结果集1
union
select * from 结果集2
union
select * from 结果集3
没看到楼上的回答,你的那个循环是死循环,永久执行,最起码得加一个 set @count=@count+1
不过你这个循环好像没啥意义。
union
select * from 结果集2
union
select * from 结果集3
没看到楼上的回答,你的那个循环是死循环,永久执行,最起码得加一个 set @count=@count+1
不过你这个循环好像没啥意义。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询