I am trying to group a steam of posts by hour, so only 1 post shows per hour but I think what is happening is that mysql limits the results then groups them and that leads to posts to appear under an hour.
Is there a way to apply the limit after the grouping as taking place?
Sample:
SELECT * FROM posts
GROUP BY posts.userid, FLOOR((UNIX_TIMESTAMP()- UNIX_TIMESTAMP(posts .time))/3600) #Hourly limiter
LIMIT 20
I want this query to do the grouping before the limiting so I can get accurate results.
LIMITorWHERE/HAVING– cularis Jul 12 '11 at 11:37