我想统计一张表中的每天产出的金额总量 每月的 每年的 因为表中的数据很多,每天数据都到不断更新,
所以我要写个存储过程 我现在想请教下大神 教教小弟 写一个统计每天每月每年的存储过程是怎么写?
------解决方案--------------------
用group by to_char(sysdate,'yyyy-mm-dd')统计每天的,
然后用group by to_char(sysdate,'yyyy-mm')统计每月,
用group by to_char(sysdate,'yyyy')统计每年
代码迷推荐解决方案:oracle存储过程,http://www.daimami.com/oracle-develop/177537.html