Tagged Questions

2
votes
1answer
111 views

Postgres 9.0.4 : Error calling function which returns a ROWTYPE from within another function

I am experiencing unexpected behaviour on Postgres 9.0.4 using pl/pgsql relating to selecting from a function that returns a ROWTYPE into a ROWTYPE variable from within another function. In the ...
1
vote
1answer
183 views

How to pass an entire row (in SQL, not PL/SQL) to a stored function?

I am having the following (pretty simple) problem. I would like to write an (Oracle) SQL query, roughly like the following: SELECT count(*), MyFunc(MyTable.*) FROM MyTable GROUP BY MyFunc(MyTable.*) ...
0
votes
1answer
1k views

Problem looping data in a postgres function using %ROWTYPE

I am trying to create a function in postgres that retrieves data from one table and inputs into another. I am using the %ROWTYPE type to store the temporary data from the select statement and then ...