Re: OT: array_accum equivalent in Oracle

From: Andreas Joseph Krogh <andreak(at)officenet(dot)no>
To: pgsql-sql(at)postgresql(dot)org
Cc: "Jonah H(dot) Harris" <jonah(dot)harris(at)gmail(dot)com>
Subject: Re: OT: array_accum equivalent in Oracle
Date: 2007-10-12 15:43:39
Message-ID: 200710121743.39228.andreak@officenet.no
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Friday 12 October 2007 17:02:23 Jonah H. Harris wrote:
> On 10/12/07, Andreas Joseph Krogh <andreak(at)officenet(dot)no> wrote:
> > Anybody knows if Oracle has an equivalent of PG's array_accum or
> > ARRAY(subselect) construct?
>
> 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!

--
Andreas Joseph Krogh <andreak(at)officenet(dot)no>
Senior Software Developer / Manager
------------------------+---------------------------------------------+
OfficeNet AS | The most difficult thing in the world is to |
Karenslyst Allé 11 | know how to do a thing and to watch |
PO. Box 529 Skøyen | somebody else doing it wrong, without |
0214 Oslo | comment. |
NORWAY | |
Tlf: +47 24 15 38 90 | |
Fax: +47 24 15 38 91 | |
Mobile: +47 909 56 963 | |
------------------------+---------------------------------------------+

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Jonah H. Harris 2007-10-12 15:55:59 Re: OT: array_accum equivalent in Oracle
Previous Message Jonah H. Harris 2007-10-12 15:02:23 Re: OT: array_accum equivalent in Oracle