Re: group by error message?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Louis-David Mitterrand <vindex+lists-pgsql-general(at)apartia(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: group by error message?
Date: 2008-09-25 15:01:08
Message-ID: 6970.1222354868@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Louis-David Mitterrand <vindex+lists-pgsql-general(at)apartia(dot)org> writes:
> critik=# select distinct pt.type_fr,sum(e2.id_event) from person_type pt natural join person_to_event join event e using (id_event) LEFT JOIN event e2 ON e.id_event = e2.id_event AND e2.id_event=219 join event_type et ON e.id_event_type = et.id_event_type where et.type_fr='thtre' GROUP BY pt.type_fr IS NULL;

> gives this error:

> ERROR: column "pt.type_fr" must appear in the GROUP BY clause or be used in an aggregate function

> But pt.type_fr is _already_ in the group by.

No, "pt.type_fr IS NULL" is in the group by. That doesn't ensure that
each group has a unique value of pt.type_fr itself.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2008-09-25 15:02:45 Re: how can I find out the numeric directory name of each database in PostgreSQL 8.3
Previous Message Justin Yao 2008-09-25 14:43:50 Re: how can I find out the numeric directory name of each database in PostgreSQL 8.3