SQL存储过程临时表问题

ALTERPROCEDURE[dbo].[BalanceToXls]--Addtheparametersforthestoredprocedurehere@StartDa... ALTER PROCEDURE [dbo].[BalanceToXls] -- Add the parameters for the stored procedure here @StartDate datetime, @EndDate datetime AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; declare @diffdate int; declare @i int; set @i=0; set @diffdate =DATEDIFF(day,@StartDate,@EndDate) print(@diffdate); drop table ##tmp1 SELECT b.Name,a.c_date, a.[mct_Today_Payout] ,a.[mct_Today_Income] ,a.[mct_Today_Balance] into ##tmp1 FROM 表1 as a,cfg_Org_MSite as b where a.c_Userid=b.id and a.c_date=@StartDate drop table ##tmp1 while(@i<@diffdate) begin set @i=@i+1;print(@i); set @StartDate=@StartDate+@i; SELECT b.Name,a.c_date, a.[mct_Today_Payout] ,a.[mct_Today_Income] ,a.[mct_Today_Balance] into ##tmp2 FROM 表1 as a,cfg_Org_MSite as b where a.c_Userid=b.id and a.c_date=@StartDate select a.*,b.c_date, b.[mct_Today_Payout] ,b.[mct_Today_Income] ,b.[mct_Today_Balance] into ##tmp3 from ##tmp1 as a,##tmp2 as b where a.Name=b.Name drop table ##tmp1 drop table ##tmp2 select * into ##tmp4 from ##tmp3 drop table ##tmp3 end select * from ##tmp1 drop table ##tmp1 drop table ##tmp2 drop table ##tmp3 END SQL2005编译无法通过,在WHILE循环里面,我DROP了一个##TMP1,然后再往##TMP1里面写入数据,这里理论上是没问题的,可是老是提示##TMP1已经存在,所以想来请教高手了 展开
 我来答
荀曾颜念雁
2019-11-10 · TA获得超过3841个赞
知道大有可为答主
回答量:3113
采纳率:27%
帮助的人:173万
展开全部
1.强调你的存储过程不规范
--到处多能看到drop
table
##tmp1
,其实第①②drop
table
##tmp1
都可以删除
多余的代码
2.while循环里面更是不能让人不唾弃
一个优秀的程序员
写的代码就是能让其他的程序员看得懂
3.临时表#可以用##也可以用
那样更简洁呢
4.建议理清思路
在重新来修改这个
相信你能理解的更透切~
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式