原贴:http://community.csdn.net/expert/topic/3739/3739565.xml?temp=.7632105
表中三个字段
|---------------------------------------------|
| 产品 数量 单价 |
|=============================================|
| a 3 20 |
| a 4 25 |
| a 2 30 |
| b 6 85 |
| b 3 96 |
|---------------------------------------------|
现在想得到以下结果:
产品 平均价
a ******
b ******
注意:一种商品一个平均价
平均数算法:
a的平均价数= (3 * 20)+ (4 * 25)+ (2 * 30)/(3+4+2),b的平均值也如a。
求该sql语句。
create table 表(产品 varchar(5),数量 int,单价 decimal(4,2))
insert 表 select 'a',3,20
union all select 'a',4,25
union all select 'a',2,30
union all select 'b',6,85
union all select 'b',3,96
select 产品,cast(sum(isnull(单价,0)*isnull(数量,0))/sum(数量) as decimal(4,2)) as '平均值' from 表 group by 产品
drop table 表
--结果:
(所影响的行数为 5 行)
产品 平均值
----- ------
a 24.44
b 88.67
(所影响的行数为 2 行)