oracle中在一个sql中如何实现既分组又能对查询出来的结果求和使用了group by 分组函数,如何实现对分组后的
oracle中在一个sql中如何实现既分组又能对查询出来的结果求和 使用了group by 分组函数,如何实现对分组后的这个表进行求和,类似rollup最后一步
[解决办法]
SQL code
-- 如果你不想使用rollup的话,就采用union方式附加个合计到结果集中。with t as (select id,sum(value) s from table1 group by id)select id,s from tunionselect '',sum(s) from t [解决办法]