"Richard Broersma" <richard.broersma@gmail.com> writes:
> On Wed, Sep 10, 2008 at 4:11 PM, Ruben Gouveia <rubes7202@gmail.com> wrote:
>> ERROR: aggregates not allowed in WHERE clause
> Having clause works on agregates. If you want to force it in the
> where, you need to put the groupby in a sub-query.
The way I like to think about it is "WHERE filters rows before aggregate
functions are computed; HAVING filters them afterwards". Seen in those
terms, it's obvious why WHERE can't contain any aggregates.
regards, tom lane