oracle实现今年数据 去年同期和增长百分比

时间:2014-09-01 10:39:13   收藏:0   阅读:1643

select c.*,round((datanow-databefore)/databefore,2)*100||‘%‘ datapercent from (select a.auth_tztype ,a.datanow,b.databefore from
(select auth_tztype,Count(auth_tztype)datanow from t_author where auth_applydate between to_date(‘2011/1/1‘,‘yyyy/mm/dd hh24:mi:ss‘)and to_date(‘2011/12/31‘,‘yyyy/mm/dd hh24:mi:ss‘) group by auth_tztype )a
 left join (select auth_tztype,Count(auth_tztype)databefore from t_author where auth_applydate between to_date(‘2010/1/1‘,‘yyyy/mm/dd hh24:mi:ss‘)and to_date(‘2010/12/31‘,‘yyyy/mm/dd hh24:mi:ss‘) group by auth_tztype  ) b on a.auth_tztype=b.auth_tztype)c

 

红色为求百分比函数
 

原文:http://www.cnblogs.com/zlqblog/p/3948684.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!