博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql当前行数据和之前行数据相加减循环处理
阅读量:5260 次
发布时间:2019-06-14

本文共 1009 字,大约阅读时间需要 3 分钟。

declare @sumQtyBalance decimal(18,2),@sumOrigValueBalance decimal(18,2),@QtyBalance  decimal(18,2),@OrigValueBalance  decimal(18,2),@rowIndex intset @sumQtyBalance=0set @sumOrigValueBalance=0set @QtyBalance=0set @OrigValueBalance=0declare _cursor cursor for(select QtyBalance,OrigValueBalance,rowIndex from TEMP_0_EAP_Rpt_AM_AMDetailRpt4a34ac88_83cd_456f_ac49_a5c300cd3eca )open _cursor;fetch next from _cursor into @QtyBalance  ,@OrigValueBalance,@rowIndex  while @@fetch_status = 0begin       update TEMP_0_EAP_Rpt_AM_AMDetailRpt4a34ac88_83cd_456f_ac49_a5c300cd3eca  set QtyBalance=ISNULL(@QtyBalance,0)+@sumQtyBalance,OrigValueBalance=ISNULL(@OrigValueBalance,0)+@sumOrigValueBalance  where rowIndex=@rowIndex     set @sumQtyBalance=ISNULL(@QtyBalance,0)+@sumQtyBalance  set @sumOrigValueBalance=ISNULL(@OrigValueBalance,0)+@sumOrigValueBalance     fetch next from _cursor into @QtyBalance  ,@OrigValueBalance,@rowIndex  endclose _cursordeallocate _cursor

 

转载于:https://www.cnblogs.com/su-king/p/9989142.html

你可能感兴趣的文章
linux sed命令
查看>>
html标签的嵌套规则
查看>>
[Source] Machine Learning Gathering/Surveys
查看>>
HTML <select> 标签
查看>>
类加载机制
查看>>
tju 1782. The jackpot
查看>>
湖南多校对抗赛(2015.03.28) H SG Value
查看>>
hdu1255扫描线计算覆盖两次面积
查看>>
hdu1565 用搜索代替枚举找可能状态或者轮廓线解(较优),参考poj2411
查看>>
bzoj3224 splay板子
查看>>
程序存储问题
查看>>
Mac版OBS设置详解
查看>>
优雅地书写回调——Promise
查看>>
android主流开源库
查看>>
AX 2009 Grid控件下多选行
查看>>
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
Ubuntu下面安装eclipse for c++
查看>>