在SQL server中进行一个循环查询,将每次的查询结果存入不同表中,

程序如下:useseattledeclare@iintset@i=1declare@accmilefloatdeclare@milefloatdeclaremcursor... 程序如下:use seattle
declare @i int
set @i=1
declare @accmile float
declare @mile float
declare m cursor
for (select Milepost from lianxiacc)
open m
fetch next from m into @accmile
while @@FETCH_STATUS = 0
begin
set @mile=(select max(milepost)from i5_2011_Jan where milepost<@accmile)

select * into sample@i from i5_2011_Jan

where Milepost=@mile
set @i = @i+1
fetch next from m into @accmile
end
其中 select * into sample@i from i5_2011_Jan 这一句里怎么实现每次循环自动更改表名?
求大神指点~
我这个把变量@i直接放上去的方法根本就是错的
展开
 我来答
SQL的艺术
2014-09-18 · SQL写多了就会在追求极致
SQL的艺术
采纳数:2040 获赞数:3323

向TA提问 私信TA
展开全部

表名不能是变量,你可以用动态SQL语句来实现

use seattle
declare @i int
set @i=1       
declare @accmile float 
declare @mile float
declare @strsql nvarchar(4000)
declare m cursor 
for (select Milepost from lianxiacc)
open m 
fetch next from m into @accmile 
while @@FETCH_STATUS = 0
begin
   set @mile=(select max(milepost)from i5_2011_Jan where milepost<@accmile)
   set @strsql='select * into sample'+cast(@i as varchar(20))+' from i5_2011_Jan where Milepost='+cast(@mile as varchar(50))
   exec(@strsql)
   set @i = @i+1
   fetch next from m into @accmile 
end
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式