Re: "select c1, method(c2) group by c1" returns all values of c2 for c1 - Mailing list pgsql-sql

From Pavel Stehule
Subject Re: "select c1, method(c2) group by c1" returns all values of c2 for c1
Date
Msg-id AANLkTimZi_ouNUm8EOyL8RmL5Op-TQwfTwJ4_4NQspFF@mail.gmail.com
Whole thread Raw
In response to "select c1, method(c2) group by c1" returns all values of c2 for c1  (Emi Lu <emilu@encs.concordia.ca>)
List pgsql-sql
Hello

you can use a string%agg function if you have a 9.0. On older version
there is a array_agg function

select c1, array_to_string(array_agg(c2),',') from T1 group by c1

regards

Pavel Stehule

2011/2/8 Emi Lu <emilu@encs.concordia.ca>:
> Good afternoon,
>
> Is there a method to retrieve the following results:
>
> T1(c1 int, c2 varchar(128) )
> ---------------------------------
>
>
> (1, val1);
> (1, val2);
> (1, val3);
> (2, val1);
> (3, val5);
> (3, val6);
>
> select c1, method(c2)
> group by c1
>
> returns:
> ============
> 1,   "val1, val2, val3"
> 2,   "val1"
> 3,   "val5, val6"
>
>
> Thanks a lot!
>
> --
> Lu Ying
>
> --
> Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql
>


pgsql-sql by date:

Previous
From: Emi Lu
Date:
Subject: "select c1, method(c2) group by c1" returns all values of c2 for c1
Next
From: Rolando Edwards
Date:
Subject: Re: "select c1, method(c2) group by c1" returns all values of c2 for c1