Re: Re: Still don't know how to build this string ? how to concat ??
От | Andy Corteen |
---|---|
Тема | Re: Re: Still don't know how to build this string ? how to concat ?? |
Дата | |
Msg-id | 14918780083.20010327152237@telecam.demon.co.uk обсуждение исходный текст |
Ответ на | Re: Still don't know how to build this string ? how to concat ?? (juerg.rietmann@pup.ch) |
Ответы |
Re: Re: Still don't know how to build this string ? how to concat ??
|
Список | 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 по дате отправления: