猿问

生成一系列日期

mysql在给定范围内生成一系列日期的最佳方法是什么?


我想到的应用程序是编写一个报表查询,为每个日期返回一行,无论是否有任何数据要报告。最简单的形式:


select dates.date, sum(sales.amount)

from <series of dates between X and Y> dates

left join sales on date(sales.created) = dates.date

group by 1

我已经尝试创建一个包含大量日期的表,但这似乎是一个糟糕的解决方法。


倚天杖
浏览 529回答 3
3回答

不负相思意

我认为拥有一张日历表是个好主意; 您可以获得大量的报告和查询功能,尤其是在填充稀疏数据范围时。

慕斯王

如果你在像我这样的情况下禁止创建临时表,并且也不允许设置变量,但是你想生成一个特定时期的日期列表,比如当前年份做一些聚合,使用这个select * from&nbsp;(select adddate('1970-01-01',t4*10000 + t3*1000 + t2*100 + t1*10 + t0) gen_date from&nbsp;(select 0 t0 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t0,&nbsp;(select 0 t1 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t1,&nbsp;(select 0 t2 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t2,&nbsp;(select 0 t3 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t3,&nbsp;(select 0 t4 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t4) vwhere gen_date between '2017-01-01' and '2017-12-31'

弑天下

您可以使用变量生成日期系列:Set @i:=0;SELECT DATE(DATE_ADD(X,&nbsp;INTERVAL @i:=@i+1 DAY) ) AS datesSeriesFROM yourtable, (SELECT @i:=0) rwhere @i < DATEDIFF(now(), date Y)&nbsp;;不知道这是不是你尝试过:)。接下来使用上面生成的查询作为表格来left join:set @i:=0;selectd.dates,sum(s.amount) as TotalAmountfrom(SELECT DATE(DATE_ADD(X,&nbsp;INTERVAL @i:=@i+1 DAY) ) AS dateSeriesFROM Sales, (SELECT @i:=0) rwhere @i < DATEDIFF(now(), date Y)&nbsp;) dates d&nbsp;left join Sales son Date(s.Created) = Date(d.dateSeries)group by 1;
随时随地看视频慕课网APP

相关分类

MySQL
我要回答