.数据表t_test
id 销售人员id 商品id 数量
id emp_id product_id qty
1 01 001 200
2 01 002 300
2 01 002 400
3 02 001 400
4 02 002 500
Createtable#t_test(
idintnotnull,
emp_idintnotnull,
product_idintnotnull,
qtyintnotnull)insertinto#t_testvalues(1,01,001,200)insertinto#t_testvalues(2,01,002,300)insertinto#t_testvalues(3,01,002,400)insertinto#t_testvalues(4,02,001,400)insertinto#t_testvalues(5,02,002,500)select*from#t_test
2.需要得到的结果
需要得到类似下面的结果
--------------------------------------
emp_id qty
01 900
02 900
合计 1800
--------------------------------------
大家看到了,这里加上了一个合计列
参考sql语句如下
--for MS SQL Server 2005selectisnull(CONVERT(varchar(20), emp_id),'Total')as'emp_id',sum(qty)as'qty_Total'from#t_testgroupbyemp_idwithrollup
查询的结果如下所示
emp_id qty_Total
1 900
2 900
Total 1800
3.负责一点,统计每个销售人员以及商品的数量
--------------------------------------
emp_id product_id qty
01 001 200
01 001 700
01 小计 900
02 001 400
02 002 500
02 小计 900
合计 1800
--------------------------------------
由于要统计合计以及小计,不能简单的用nvl来产生"合计"了,要用grouping函数,来判断者某行是否有rollup产生的合计行,
select
case when grouping(emp_id)=1 and grouping(product_id)=1 then '合计' else emp_id end emp_id,
case when grouping(emp_id)=0 and grouping(product_id)=1 then '小计' else procudt_id end product_id,
sum(qty) qty
from t_test
group by rollup(emp_id,product_id)
注意,grouping(emp_id)=1,说明是有rollup函数生成的行,0为数据库本身有的行