码迷,mamicode.com
首页 > 其他好文 > 详细

环比同比

时间:2017-10-12 19:12:29      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:any   color   bst   class   cti   lead   style   .com   sele   

 1 SELECT 
 2     TEMP.*,
 3     NVL(round(((TEMP.CollectionAmount + TEMP.StayCollectionAmount) / lag(TEMP.CollectionAmount + TEMP.StayCollectionAmount) over(order by TEMP.MonthID)) * 100, 2), 0) || % "环比",
 4     NVL(round(((TEMP.CollectionAmount + TEMP.StayCollectionAmount) / lag(TEMP.CollectionAmount + TEMP.StayCollectionAmount) over(partition by SUBSTR(to_char(TEMP.MonthID), 5, 2) ORDER BY TEMP.MonthID)) * 100, 2), 0) || % "同比" 
 5 FROM
 6     (SELECT 
 7         *
 8     FROM 
 9         tds_agent_org_revcoll_mon T
10     WHERE 
11         T.companyId = -1
12             AND T.MonthID >= 201601
13             AND T.MonthID <= 201707) TEMP

参考lag和lead函数。

^_^

环比同比

标签:any   color   bst   class   cti   lead   style   .com   sele   

原文地址:http://www.cnblogs.com/gotodsp/p/7657284.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!