中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 數據庫 > 
  • sql中怎么循環處理當前行數據和上一行數據相加減

sql中怎么循環處理當前行數據和上一行數據相加減

發布時間:2021-09-13 21:45:28 來源:億速云 閱讀:822 作者:chen 欄目:數據庫

本篇內容主要講解“sql中怎么循環處理當前行數據和上一行數據相加減”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“sql中怎么循環處理當前行數據和上一行數據相加減”吧!

 以下事例,使用游標循環表#temptable中數據,然后讓當前行和上一行中的argument1 相加 存放到當前行的 argument2 中,比較簡單。

--drop table #temptablecreate table #temptable(  argument1 int,  argument2 int,  argument3 datetime)declare @rowcount int,@argument1 int,@argument2 nvarchar(50),@argument3 datetimeset @rowcount=1set @argument1=1set @argument2=0set @argument3=GETDATE()while(@rowcount<100)begin  insert into #temptable(argument1,argument2,argument3)        values(@argument1,@argument2,@argument3)    set @argument1=@argument1 + datepart(day,@argument3)  set @argument3=@argument3-1    set @rowcount = @rowcount + 1end--select * from #temptabledeclare @lastargument2 intset @lastargument2=0set @argument2=0declare _cursor cursor for(select argument1 from #temptable)open _cursor;fetch next from _cursor into @argument2 while @@fetch_status = 0begin        update #temptable  set argument2=@argument2+@lastargument2  where current of _cursor    set @lastargument2=@argument2    fetch next from _cursor into @argument2 endclose _cursordeallocate _cursor--select * from #temptable

到此,相信大家對“sql中怎么循環處理當前行數據和上一行數據相加減”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

sql
AI

祁阳县| 韶山市| 慈溪市| 博罗县| 海宁市| 澎湖县| 武邑县| 旬阳县| 新津县| 巴青县| 石台县| 天全县| 阳原县| 虞城县| 桐梓县| 乌兰察布市| 重庆市| 青阳县| 修武县| 双桥区| 西充县| 渭南市| 日土县| 灵武市| 贵州省| 黔江区| 乳山市| 泉州市| 深州市| 志丹县| 济源市| 蒙城县| 赤城县| 儋州市| 平陆县| 保山市| 巴林右旗| 炉霍县| 巩义市| 景宁| 婺源县|