真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

sql中怎么循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減-創(chuàng)新互聯(lián)

本篇內(nèi)容主要講解“sql中怎么循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“sql中怎么循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減”吧!

創(chuàng)新互聯(lián)建站是一家專業(yè)提供牟平企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、H5頁面制作、小程序制作等業(yè)務(wù)。10年已為牟平眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。

以下事例,使用游標(biāo)循環(huán)表#temptable中數(shù)據(jù),然后讓當(dāng)前行和上一行中的argument1 相加 存放到當(dāng)前行的 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中怎么循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)建站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!


本文標(biāo)題:sql中怎么循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://weahome.cn/article/dogdpp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部