Re: OT: array_accum equivalent in Oracle - Mailing list pgsql-sql

From Jonah H. Harris
Subject Re: OT: array_accum equivalent in Oracle
Date
Msg-id 36e682920710120855oe36e034s387b0fdc24ecb11c@mail.gmail.com
Whole thread Raw
In response to Re: OT: array_accum equivalent in Oracle  (Andreas Joseph Krogh <andreak@officenet.no>)
List pgsql-sql
On 10/12/07, Andreas Joseph Krogh <andreak@officenet.no> wrote:
> > Something like this:
> >
> > CREATE TYPE varchar2_table_t AS TABLE OF VARCHAR2(32767);
> > SELECT job, CAST(MULTISET(SELECT ename FROM emp WHERE job = e.job) AS
> > varchar2_table_t) FROM emp e GROUP BY job;
>
> Amazing! Works like a charm.
> I was envisioning some pretty ugly PL/SQL functions to accomplish this.
>
> Thanks!

No problem.

-- 
Jonah H. Harris, Sr. Software Architect | phone: 732.331.1324
EnterpriseDB Corporation                | fax: 732.331.1301
499 Thornall Street, 2nd Floor          | jonah.harris@enterprisedb.com
Edison, NJ 08837                        | http://www.enterprisedb.com/


pgsql-sql by date:

Previous
From: Andreas Joseph Krogh
Date:
Subject: Re: OT: array_accum equivalent in Oracle
Next
From: Erik Jones
Date:
Subject: Re: Accessing field of OLD in trigger