主頁 > 知識庫 > sql中循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減

sql中循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減

熱門標(biāo)簽:如何在地圖標(biāo)注自己店鋪 400外呼系統(tǒng)合法 地圖標(biāo)注一個圓圈怎么用 真人語音電銷機器人 怎樣把地圖標(biāo)注導(dǎo)入公司地址 洛陽外呼系統(tǒng)平臺 寧波人工外呼系統(tǒng)有效果嗎 電銷機器人被曝光 廣州人工電銷機器人費用

  以下事例,使用游標(biāo)循環(huán)表#temptable中數(shù)據(jù),然后讓當(dāng)前行和上一行中的argument1 相加 存放到當(dāng)前行的 argument2 中,比較簡單。

--drop table #temptable
create table #temptable
(
  argument1 int,
  argument2 int,
  argument3 datetime
)

declare @rowcount int,@argument1 int,@argument2 nvarchar(50),@argument3 datetime
set @rowcount=1
set @argument1=1
set @argument2=0
set @argument3=GETDATE()

while(@rowcount100)
begin
  insert into #temptable(argument1,argument2,argument3)
        values(@argument1,@argument2,@argument3)
  
  set @argument1=@argument1 + datepart(day,@argument3)
  set @argument3=@argument3-1  
  set @rowcount = @rowcount + 1
end

--select * from #temptable

declare @lastargument2 int
set @lastargument2=0
set @argument2=0
declare _cursor cursor for(select argument1 from #temptable)
open _cursor;
fetch next from _cursor into @argument2 
while @@fetch_status = 0
begin      
  update #temptable
  set argument2=@argument2+@lastargument2
  where current of _cursor
  
  set @lastargument2=@argument2  
  fetch next from _cursor into @argument2 
end
close _cursor
deallocate _cursor

--select * from #temptable

問一個問題:

第一句fetch next from _cursor into @argument2 這句為什么不能放在while循環(huán)的第一行,刪除第二行呢?我記得自己當(dāng)時在這里出錯了,呵呵。

您可能感興趣的文章:
  • sqlite循環(huán)批量插入數(shù)據(jù)采用批處理文件實現(xiàn)
  • SQLServer 循環(huán)批處理

標(biāo)簽:珠海 東營 晉中 北海 煙臺 石家莊 南昌 咸寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《sql中循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減》,本文關(guān)鍵詞  sql,中,循環(huán),處,理當(dāng),前行,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《sql中循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減》相關(guān)的同類信息!
  • 本頁收集關(guān)于sql中循環(huán)處理當(dāng)前行數(shù)據(jù)和上一行數(shù)據(jù)相加減的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章