From: | "Dennis" <pg-user(at)calico-consulting(dot)com> |
---|---|
To: | "postgres SQL" <pgsql-sql(at)postgresql(dot)org> |
Subject: | cursors and for loops? |
Date: | 2004-04-11 04:59:50 |
Message-ID: | courier.4078D0C7.00000C8F@wolverine.lercnetworks.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Hello,
I am wondering if I can use a cursor in a for loop. I haven't been able to
get it to work. I am just beginning plpgsql and I am struggling here.
I am trying to do this:
create or replace function ttest(varchar)
RETURNS varchar AS '
DECLARE
parId ALIAS FOR $1;
dennis varchar;
tmp_xvalues RECORD;
attrVals CURSOR (thePar varchar)
IS select '' '' || name ||''="''|| value ||''"'' as rval
from attbl where idcol = thePar;
BEGIN
OPEN attrVals(parId);
for tmp_xvalues in fetch all from attrVals loop
dennis := dennis || tmp_xvalues.rval;
end loop;
return dennis;
END;
' language plpgsql;
If I try to use this function like so:
select ttest('blah')
I get:
Error: ERROR: syntax error at or near "all" at character 15
I guess I am confused what I can put in "for var in <expression> loop" and
what "fetch next" or "fetch all" evaluates to.
Dennis
pg-user(at)calico-consulting(dot)com
From | Date | Subject | |
---|---|---|---|
Next Message | Bret Hughes | 2004-04-11 05:43:22 | trigger/for key help |
Previous Message | Greg Stark | 2004-04-11 04:38:20 | Re: SQL challenge--top 10 for each key value? |