上传者: 38651661
|
上传时间: 2022-03-17 18:58:53
|
文件大小: 27KB
|
文件类型: -
以下事例,使用游标循环表#temptable中数据,然后让当前行和上一行中的argument1 相加 存放到当前行的 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
s