将相同字段的值加在一起需要用sum函数。
如emp表中有如下数据:
现要按deptno为分组,将sal的值加在一起,可用如下语句:
select deptno,sum(sal) sal from emp group by deptno;
查询结果:
问题不是太清楚!!
--每个物品有个字段表示数量,数量求和
select 物品的值,sum(数量) from table_name group by 物品的值
--统计所有物品的值相同的行数。
select 物品的值,count(*) from table_name group by 物品的值
select a.id,(nvl(a.AMOUNT,0)-nvl(b.REV,0)) Result
from a,
(select b.id,sum(b.REV) REV
from b
group by b.id) b
where a.id=b.id(+);
按物品分组统计就ok了
select SUM()
from 。。。
group by 物品名称
select name,
sum(物品价值),
count(1)
from tablename
group by name;