Is this a parser error ? - Mailing list pgsql-hackers

From Shiby Thomas
Subject Is this a parser error ?
Date
Msg-id 199802041757.MAA11021@cise.ufl.edu
Whole thread Raw
In response to Re: [HACKERS] Execution time.  (The Hermit Hacker <scrappy@hub.org>)
List pgsql-hackers
Hi,

assoc=> explain insert into f2_temp select p.item, q.item, count(*) as cnt
from t1 p, t1 q where p.tid = q.tid and p.item < q.item group by p.item,
q.item;
ERROR:  The field being grouped by must appear in the target list

However, it works this way:
assoc=> explain select p.item, q.item, count(*) as cnt into table f2_temp from
t1 p, t1 q where p.tid = q.tid and p.item < q.item group by p.item, q.item;
NOTICE:  QUERY PLAN:

--shiby



pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Re: [QUESTIONS] is Postgres an SQL-based database?
Next
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Hi