Group By Statement - how to display fields not in the statement? - Mailing list pgsql-novice

From lcp_
Subject Group By Statement - how to display fields not in the statement?
Date
Msg-id 25089050.post@talk.nabble.com
Whole thread Raw
Responses Re: Group By Statement - how to display fields not in the statement?  (Joshua Tolley <eggyknap@gmail.com>)
List pgsql-novice

I have the following query:

SELECT count(*), address, organizati FROM afterschool
WHERE verified IS TRUE
Group BY address, organizati HAVING count(*) >1

I would like to have the individual records from this query display with
other fields not in the Group By clause. If I try to add other fields to the
select statement I get this error:

ERROR: column "afterschool.firstname" must appear in the GROUP BY clause or
be used in an aggregate function

Any ideas on how I can both Group By these fields and limit to counts of
more than one, and also display the records with more than just the fields I
am grouping by?
--
View this message in context:
http://www.nabble.com/Group-By-Statement---how-to-display-fields-not-in-the-statement--tp25089050p25089050.html
Sent from the PostgreSQL - novice mailing list archive at Nabble.com.


pgsql-novice by date:

Previous
From: David Saracini
Date:
Subject: pg_dump
Next
From: Joshua Tolley
Date:
Subject: Re: Group By Statement - how to display fields not in the statement?