Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. idclient | month_transac | sales
  2. ----------+---------------+--------
  3. 511656A75 | 2010-06-01 | 68.57
  4. 511656A75 | 2010-07-01 | 88.63
  5. 511656A75 | 2010-08-01 | 94.91
  6. 511656A75 | 2010-09-01 | 70.66
  7. 511656A75 | 2010-10-01 | 28.84
  8. [...]
  9. 511656A75 | 2015-10-01 | 85.00
  10. 511656A75 | 2015-12-01 | 114.42
  11. 511656A75 | 2016-01-01 | 137.08
  12. 511656A75 | 2016-03-01 | 172.92
  13. 511656A75 | 2016-04-01 | 125.00
  14. 511656A75 | 2016-05-01 | 127.08
  15. 511656A75 | 2016-06-01 | 104.17
  16. 511656A75 | 2016-07-01 | 98.22
  17. 511656A75 | 2016-08-01 | 37.08
  18. 511656A75 | 2016-10-01 | 108.33
  19. 511656A75 | 2016-11-01 | 104.17
  20. 511656A75 | 2017-01-01 | 201.67
  21.  
  22. SELECT t1.idclient
  23. , t1.month_transac::date
  24. , t1.sales
  25. , SUM(t2.sales) as sales_ttm
  26. FROM temp_sales_sample_month_aggr t1
  27. LEFT JOIN temp_sales_sample_month_aggr t2 USING (idclient)
  28. WHERE
  29. t1.idclient = '511656A75' -- for example only
  30. AND t2.month_transac >= (t1.month_transac - interval '12 months')
  31. AND t2.month_transac < t1.month_transac
  32. GROUP BY 1, 2, 3
  33. ORDER BY 2
  34. ;
  35.  
  36. idclient | month_transac | sales | sales_ttm
  37. -----------+---------------+--------+---------
  38. 511656A75 | 2010-07-01 | 88.63 | 68.57
  39. 511656A75 | 2010-08-01 | 94.91 | 157.20
  40. 511656A75 | 2010-09-01 | 70.66 | 252.11
  41. 511656A75 | 2010-10-01 | 28.84 | 322.77
  42. 511656A75 | 2010-11-01 | 110.38 | 351.61
  43. 511656A75 | 2010-12-01 | 125.67 | 461.99
  44. 511656A75 | 2011-01-01 | 108.45 | 587.66
  45. 511656A75 | 2011-02-01 | 83.21 | 696.11
  46. 511656A75 | 2011-03-01 | 102.73 | 779.32
  47. 511656A75 | 2011-04-01 | 254.09 | 882.05
  48. [...]
  49.  
  50. idclient | month_transac | sales | sales_ttm
  51. -----------+---------------+--------+---------
  52. 511656A75 | 2010-06-01 | 68.57 | 0.00
  53. 511656A75 | 2010-07-01 | 88.63 | 68.57
  54. 511656A75 | 2010-08-01 | 94.91 | 157.20
  55. 511656A75 | 2010-09-01 | 70.66 | 252.11
  56. [...]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement