Group by day from timestamp

前端 未结 3 1575
名媛妹妹
名媛妹妹 2020-12-23 12:29

In my posts table, it saves timestamp for each post record.

What query can group posts by day, using this timestamp column?

3条回答
  •  南笙
    南笙 (楼主)
    2020-12-23 13:07

    How about this? Using the DATE function:

     SELECT DATE(FROM_UNIXTIME(MyTimestamp)) AS ForDate,
            COUNT(*) AS NumPosts
     FROM   MyPostsTable
     GROUP BY DATE(FROM_UNIXTIME(MyTimestamp))
     ORDER BY ForDate
    

    This will show you the number of posts on each date that the table has data for.

提交回复
热议问题