首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

想对表中同一列的数列进行运算应该怎么实现

2012-01-19 
想对表中同一列的数列进行运算应该如何实现如第一列的第二个记录乘以二加上第一个记录应该如何做[解决办法

想对表中同一列的数列进行运算应该如何实现
如     第一列的第二个记录乘以二加上第一个记录         应该如何做    


[解决办法]
select identity(int,1,1) as id,col1 into # from tb
select isnull((select 2*b.col1 from tb b where b.id=a.id+1) ,0)+a.col1 as sumvalue from tb a
drop table #
[解决办法]
--插入临时表,并升成一自增列
select identity(int,1,1) as id,col1 into # from tb
--选出当前id的下一列col的值并剩二(最后一行没有id+1的col所以加上isnull( ' ',0))
--用下列的值乘二后加本列col1的值isnull((select 2*b.col1 from tb b where b.id=a.id+1) ,0)+a.col1
--执行
select isnull((select 2*b.col1 from tb b where b.id=a.id+1) ,0)+a.col1 as sumvalue from tb a
--删除临时表
drop table #

热点排行