作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想用 SQL 计算每年的年度记录,例如 2001 年 4 月 4 日
到 2002 年 4 月 4 日
。
喜欢:
Total | Year
2000 | 4th april 2001 to 4th april 2002
3000 | 4th april 2002 to 4th april 2003
等等...
最佳答案
这有点棘手。我认为最简单的方法是减去3个月3天并按年份汇总:
select year((dte - interval 3 day) - interval 3 month), sum(amount)
from t
group by year((dte - interval 3 day) - interval 3 month);
不幸的是,闰年的存在干扰了按日的计算,因为在某些年份 2 月有 28 天,而在其他年份则有 29 天。
关于mysql - 从特定日期 sql 算起 12 个月的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49723655/
我想用 SQL 计算每年的年度记录,例如 2001 年 4 月 4 日 到 2002 年 4 月 4 日。 喜欢: Total | Year 2000 | 4th april 2001 to 4th
我是一名优秀的程序员,十分优秀!