我在我的数据库中按日期分类了客户端事件。 有一些没有事件的日期,所以在DB中存放剂量。 如何按日期选择所有事件,如果日期没有事件写入0。
例如:
Events | Client | timestamp
event1 | Mondher | 2014-11-02
event2 | Mondher | 2014-11-04
这是我的疑问:
select date(timestamp), count(*)
from table
where client="Mondher"
group by timestamp;
结果是:
2014-11-02 1
2014-11-04 1
但我需要这个结果:
2014-11-02 1
2014-11-03 0
2014-11-04 1