Re: Re: Still don't know how to build this string ? how to concat ?? - Mailing list pgsql-sql

From Andy Corteen
Subject Re: Re: Still don't know how to build this string ? how to concat ??
Date
Msg-id 14918780083.20010327152237@telecam.demon.co.uk
Whole thread Raw
In response to Re: Still don't know how to build this string ? how to concat ??  (juerg.rietmann@pup.ch)
Responses Re: Re: Still don't know how to build this string ? how to concat ??  (Andy Corteen <lbc@telecam.demon.co.uk>)
List pgsql-sql
Tuesday, March 27, 2001, 10:20:18 AM, you wrote:

jrpc> <snip...>

jrpc> Result:
jrpc> 01   1440
jrpc> 02   1460
jrpc> 03   1398

jrpc> The values (1440, ...) are the last entries of z_u_umfang for each z_u_typ.
jrpc> This is correct since in the function the list:= ... is overwritten until
jrpc> the last record is read.
jrpc> When I try to concat the list in the manner of list := list ||
jrpc> text(rec.z_u_umfang); the zustring is empty !

jrpc> Thanks for any help ... jr

jrpc> Query :
jrpc> select distinct z_u_typ, buildString(z_u_typ) as zustring from
jrpc> zylinder_umfang

jrpc> Function:
jrpc> CREATE FUNCTION buildString(bpchar) RETURNS text AS '
jrpc>         DECLARE
jrpc>                 list           text;
jrpc>                 rec          record;
jrpc>         BEGIN
jrpc>           FOR rec IN SELECT z_u_umfang FROM zylinder_umfang WHERE z_u_typ
jrpc> = $1;
jrpc>              list := text(rec.z_u_umfang);
jrpc>           END LOOP;
jrpc>           RETURN list;
jrpc>         END;
jrpc> ' LANGUAGE 'plpgsql';

You seem to be constantly re-assigning "list", rather than adding to
it with each iteration of the "for loop".

Would: ... list := list || ',' || text(rec.z_u_umfang) ...
be what your solution is missing?

-- 
Best regards,Andy                            mailto:lbc@telecam.demon.co.uk




pgsql-sql by date:

Previous
From: "Sean Weissensee"
Date:
Subject: Upgrading from 6.2 to 7
Next
From: Tom Lane
Date:
Subject: Re: Upgrading from 6.2 to 7