after reading through a couple similar Qs/As I haven't quite found the solution I'm looking for. The table data I have is GROUP BY DATE(timestamp) and returning a count, example result:
[timestamp] => 2010-05-12 20:18:36
[count] => 10
[timestamp] => 2010-05-14 10:10:10
[count] => 8
Without using a temporary table, or calendar table is there a way to fill in those missing dates? so that with the same table data would return:
[timestamp] => 2010-05-12 20:18:36
[count] => 10
/**
* I would like to have this row added:
*/
[timestamp] => 2010-05-13 00:00:00
[count] => 0
[timestamp] => 2010-05-14 10:10:10
[count] => 8
Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…