妙用SQL Server聚合函数和子查询迭代求和
2008-10-04 10:06:29 来源:WEB开发网当前记录的totalprice值 = 上一条当前记录的price值 + 上一条记录的totalprice值
第一条记录的totalprice值就是当前记录的price值,查询t_product表的结果如图3所示。
图3
要查询出上述的记录也很容易,只需要将<=改成<即可,SQL语句如下:
select a.xh, a.price,
(select sum(price) from t_product b where b.xh < a.xh) as totalprice
from t_product a
但上面的SQL查询出来的记录的第一条的totalprice字段值为null,如图4所示。
图4
为了将这个null换成10,可以使用case语句,SQL语句如下:
select xh, price,
(case when totalprice is null then price else totalprice end ) as totalprice
from
(select a.xh, (select sum(price) from t_product b where b.xh < a.xh) as totalprice , a.price
from t_product a) x
在上面的SQL语句共有三层select查询,最里面一层如下:
select sum(price) from t_product b where b.xh < a.xh)
中间一层的子查询如下:
select a.xh, (select sum(price) from t_product b where b.xh < a.xh) as totalprice , a.price
from t_product a
最外面一层当然就是整个select语句了。
在执行上面的SQL后,将会得到和图3一样的查询结果了。
如果读者不喜欢写太长的SQL,可以将部分内容写到函数里,代码如下:
create function mysum(@xh int, @price int) returns int
begin
return (select
(case when totalprice is null then @price else totalprice end) as totalprice
from ( select sum(price) as totalprice from t_product where xh < @xh) x)
end
可使用下面的SQL语句来使用这个函数:
select xh, price, dbo.mysum(xh, price) as totalprice
from t_product
在执行上面的SQL后,将得出如图3所示的查询结果。
建立t_product表的SQL语句(SQL Server 2005)如下:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[t_product]') AND type in (N'U'))
BEGIN
CREATE TABLE [dbo].[t_product](
[xh] [int] NOT NULL,
[price] [int] NOT NULL,
CONSTRAINT [PK_t_product] PRIMARY KEY CLUSTERED
(
[xh] ASC
)WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
END
文章来源:http://www.cnblogs.com/nokiaguy/archive/2008/09/02/1281968.html
- ››sql server自动生成批量执行SQL脚本的批处理
- ››sql server 2008亿万数据性能优化
- ››SQL Server 2008清空数据库日志方法
- ››sqlserver安装和简单的使用
- ››SQL Sever 2008 R2 数据库管理
- ››SQL SERVER无法安装成功,sqlstp.log文件提示[未发...
- ››Sql Server中通过父记录查找出所有关联的子记录
- ››SqlServer触发器、存储过程和函数
- ››SQL Server 中的事务(含义,属性,管理)
- ››Sqlite数据库插入和读取图片数据
- ››Sql server 2005拒绝了对对象 'xx表' (数...
- ››Sql server 2005拒绝了对对象 'xx表' (数...
更多精彩
赞助商链接