日期:2014-05-17 浏览次数:20430 次
create table #tb(
序号 int,班次 varchar(5),
姓名 varchar(10),分数 int,等级 varchar(10)
)
insert into #tb
select 1,'A','张一',99,'p'
union all select 2,'B','张二',98,'pp'
union all select 3,'C','张三',97,'PPP'
union all select 3,'C','张三',97,'PPP'
select * from #tb
declare @i int
set @i=-1
update #tb set 序号=序号+@i,@i=@i+1
where 序号=3
update #tb set 分数=50
where 序号=3
select * from #tb
-- drop table #tb
/*
1 A 张一 99 p
2 B 张二 98 pp
3 C 张三 50 PPP
4 C 张三 97 PPP
*/