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.

link|improve this question

Could you post a sample query? I can't figure out if you mean LIMIT or WHERE/HAVING – cularis Jul 12 '11 at 11:37
I posted a sample in the question as an edit. – Akay Jul 12 '11 at 11:40
feedback

1 Answer

up vote 4 down vote accepted

Generally a HAVING clause is used to filter groups, as the HAVING clause is evaluated on the results of the GROUP BY. See http://www.electrictoolbox.com/mysql-group-by-having/ for examples.

link|improve this answer
To be precise: HAVING filters the aggregate (MAX, SUM etc). The group (GROUP BY) can be filtered in the WHERE – gbn Jul 12 '11 at 11:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.