5

我有以下 sql 表(简化)

ID (int)  title (text)            date (int)
--------------------------------------------
1         Hello World             1378148920
2         Hello World2            1378182183
3         Hello World3            1378129838
4         Hello World4            1378146160
5         Hello World5            1378138038
....

该表有数千个条目。

我不想问你是否可以构建一个 SQL 查询,将所有帖子按日期分组,但仅按天分组。

所以最后我不想建立这样的图表(过去 5 天):

02.09.2013: 13 posts
01.09.2013: 14 posts

注意:时间戳不是真实的(它们都是从今天开始的)

4

1 回答 1

20

您可以使用from-unixtime()

select FROM_UNIXTIME(`date`, '%d.%m.%Y') as ndate,
       count(id) as post_count
from your_table
group by ndate
于 2013-09-03T13:28:28.547 回答