MySQL - 显示给定会计年度每月的所有金额

时间:2016-09-13 15:21:50

标签: mysql sql database

我想从Stackoverflow中的SQL专家那里寻求帮助。

我目前有这种表:

enter image description here

我已经使用此查询成功获得每年的金额:

select case when month(savings_date) >=11
then year(savings_date) +1
else year(savings_date)
end as fiscal, sum(amount)
from net_savings
group by fiscal

有了这个输出:

enter image description here

enter image description here

现在我想显示每个财政年度输入的所有金额。我该怎么做?

我的会计年度从11月开始,到10月结束。因此,如果我的记录中有2015年10月,那么当我作为会计年度进入2016年时,它不会显示出来。

1 个答案:

答案 0 :(得分:1)

你可以这样做:

[i]stringstream