can somebody execute this query on Oracle 11.2g and send result?

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: can somebody execute this query on Oracle 11.2g and send result?
Date: 2010-01-28 14:10:43
Message-ID: 162867791001280610t195b3394ge2629619d9683860@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello,

I can't to install Oracle, and need to know result.

CREATE TABLE foo(a varchar(10), b varchar(10));

INSERT INTO foo VALUES('aaa',',');
INSERT INTO foo VALUES('bbb',';');
INSERT INTO foo VALUES('ccc','+');

SELECT listagg(a,b) FROM foo;

Thank you

Pavel Stehule

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2010-01-28 14:13:48 Re: CommitFest status summary 2010-01-27
Previous Message Pavel Stehule 2010-01-28 14:01:19 Re: Review: listagg aggregate