Re: aggregate reverse - Mailing list pgsql-sql

From Marcin Krawczyk
Subject Re: aggregate reverse
Date
Msg-id 95f6bf9b0802020048r336ba75etb2cf7508d0098854@mail.gmail.com
Whole thread Raw
In response to Re: aggregate reverse  ("Pavel Stehule" <pavel.stehule@gmail.com>)
List pgsql-sql
Yes, you got me well. That's exactly what I was trying to achieve. Thank you.


2008/2/1, Pavel Stehule <pavel.stehule@gmail.com>:
Hello

I am not sure if I understand well.

On 01/02/2008, Marcin Krawczyk <jankes.mk@gmail.com> wrote:
> Hi all. I wolud like to know whether it is possible to reverse the behaviour
> of an aggregate? Say I have a string '1,2,3,4'. Is there a way to split
> those values to records?

create or replace function unpack(anyarray)
returns setof anyelement as $$
select $1[i]
   from generate_series(array_lower($1,1), array_upper($1,1)) g(i)
$$ language sql immutable;

select * from unpack(string_to_array('1,2,3,4',','));
unpack
--------
1
2
3
4
(4 rows)

Regards
Pavel


>
> Regards and thanks in advance.
>  mk
>

pgsql-sql by date:

Previous
From: "Pavel Stehule"
Date:
Subject: Re: aggregate reverse
Next
From: chrisj
Date:
Subject: can a insert with a returning clause be subquery ?