Re: How to concatenate multiple rows from db_source?

From: S. F. Lott <slott_at_delphi.com>
Date: 1996/04/17
Message-ID: <3174CC4A.371E_at_delphi.com>#1/1


badri wrote:
>
> Hi:
>
> I would like to concatenate all rows of the db_source column
> for a given "name". Thus, I want one column in my result that has
> the concatenation of all the lines of the selected procedure,
> for example.
>

DECLARE
        RESULT VARCHAR2(10000);
 CURSOR src FOR SELECT TEXT FROM DB_SOURCE WHERE ...; BEGIN
 FOR src_r IN src LOOP

    RESULT:= RESULT || src_r.text;
 END LOOP;
END;

-- 
S. Lott
Consultant, NE Region
CTG
SLOTT_at_DELPHI.COM
S.LOTT_at_CTG.COM
800-992-5350 box 7053
Received on Wed Apr 17 1996 - 00:00:00 CEST

Original text of this message