繁体   English   中英

比较本周和去年同一周的财务数据

[英]Compare financial data from this week to the same week last year

我需要比较本周与去年同一周的财务数据。

        amount  storecode   date
        0.00    0000000001  2010-12-21 14:01:00
        0.00    0000000001  2010-12-21 14:01:00
        0.00    0000000001  2010-12-21 14:57:50
        10.00   0000000001  2010-12-21 14:57:50
        2.35    0000000001  2010-12-21 14:57:50
        45.00   0000000001  2010-12-21 14:57:50
        0.00    0000000001  2010-12-21 14:57:50
        -10.00  0000000001  2010-12-21 14:57:50
        -2.35   0000000001  2010-12-21 14:57:50
        -45.00  0000000001  2010-12-21 14:57:50
        ...................etc...etc to 2014

我尝试了许多不同的时间间隔,但是我找不到适合我的老板在本周和去年同一周之间进行比较的准确内容。

我什至尝试将其与另一个表连接起来,以提供商店代码无脂肪视觉表示,而不是数字形式

        SELECT distinct(`stores`.`StoreLocation`) as branch, SUM(`TRANSACTIONS`.`Amount`) as AmountTendered , DATE(`TRANSACTIONS`.`Date`) as Dates FROM transactions LEFT JOIN stores ON stores.StoreCode = transactions.Storecode WHERE DATE_SUB(CURDATE(),INTERVAL 1 year) <= DATE(Date) group by YEAR(Date) 

您听起来不确定自己了解自己想要什么(或更具体地说,老板希望如何将一年的周值与另一年的值相关联( 主要是按月并且可能要花一周或两周的时间 )。

这是您共享数据的起点

去年报告的例子

SELECT YEAR(`date`) AS `year`
    , WEEKOFYEAR(`date`) AS weekno
    ,Storecode AS storecode
    , SUM(amount) AS amount
FROM transactions
WHERE YEAR(`date`) = YEAR(DATE_SUB(NOW(), INTERVAL 1 YEAR))
GROUP BY YEAR(`date`), WEEKOFYEAR(`date`), Storecode

这是带有比较的查询示例

SELECT this.storecode 
   , this.weekno
   , this.amount AS current_amount
   , history.amount AS past_amount
FROM (SELECT YEAR(`date`) AS `year`
        , WEEKOFYEAR(`date`) AS weekno
        ,Storecode AS storecode
        , SUM(amount) AS amount
      FROM transactions
      WHERE YEAR(`date`) = YEAR(NOW())
      GROUP BY YEAR(`date`), WEEKOFYEAR(`date`), Storecode) AS this
JOIN (SELECT YEAR(`date`) AS `year`
        , WEEKOFYEAR(`date`) AS weekno
        ,Storecode AS storecode
        , SUM(amount) AS amount
      FROM transactions
      WHERE YEAR(`date`) = YEAR(DATE_SUB(NOW(), INTERVAL 1 YEAR))
      GROUP BY YEAR(`date`), WEEKOFYEAR(`date`), Storecode) AS history
  ON this.weekno = history.weekno
    AND this.storecode = history.storecode;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM