Re: concatenate text

From: Berend Tober <btober(at)seaworthysys(dot)com>
To: David Fetter <david(at)fetter(dot)org>
Cc: Sterpu Victor <victor(at)ambra(dot)ro>, pgsql-general(at)postgresql(dot)org
Subject: Re: concatenate text
Date: 2005-09-05 07:30:30
Message-ID: 431BF416.6060401@seaworthysys.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

David Fetter wrote:

>On Mon, Sep 05, 2005 at 03:00:30AM +0300, Sterpu Victor wrote:
>
>
>>Can I do something like this?
>>SELECT sum(name) FROM table;
>>
>>Where name is a text field.
>>I know 'sum' doesn't work, but is there another solution?
>>'||' is not good because it will take just 2 arguments.
>>
>>
>
>Currently, you can use a custom aggregate like array_accum()
>http://www.postgresql.org/docs/current/static/xaggr.html
>
>combined with the array_to_string() like this:
>
>SELECT array_to_string(array_accum(email), ', ') AS "emails"
>FROM person_email;
>
>
>

Check out the "User Comments" at

http://www.postgresql.org/docs/8.0/interactive/sql-createaggregate.html

There are a couple good suggestions there that don't deal with arrays.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Rose, Juergen 2005-09-05 07:39:47 SLOOOOOOOW
Previous Message Tino Wildenhain 2005-09-05 06:05:51 Re: concatenate text