Re: Combining several rows - Mailing list pgsql-general

From Tom Lane
Subject Re: Combining several rows
Date
Msg-id 10852.1085406596@sss.pgh.pa.us
Whole thread Raw
In response to Combining several rows  (Matthias Nagl <pg@mnagl.de>)
List pgsql-general
Matthias Nagl <pg@mnagl.de> writes:
> Let's say I've got a table in the following form:

> SELECT * FROM test;

> id  |  name
> -----------
>  1  |  abc
>  2  |  def
>  3  |  ghi

> For a table like this I am looking for a query that returns a result that
> looks this way:

>     name
> -------------
> abc, def, ghi

The easy way to do this is with a user-defined aggregate.  I believe
there are several threads in the mailing list archives that give
solutions to exactly this problem.  I tried "create aggregate comma"
at http://www.pgsql.ru/db/pgsearch/ and got this as the first hit:
http://archives.postgresql.org/pgsql-sql/2003-03/msg00381.php

            regards, tom lane

pgsql-general by date:

Previous
From: Holger Klawitter
Date:
Subject: Re: Combining several rows
Next
From: Greg Spiegelberg
Date:
Subject: Re: [ADMIN] Clustering Postgres