Re: [SQL] Return a set of values from postgres Function

2003-07-19 Thread Stephan Szabo
On Thu, 17 Jul 2003, Derrick Betts wrote: > I want to get a set of values returned from a function. The values > (there will need to be four of them) come from 4 separate SELECT > statements inside the Function. For example SELECT one INTO variable1 > from table1 where ... then SELECT two INTO

[SQL] Return a set of values from postgres Function

2003-07-19 Thread Derrick Betts
I want to get a set of values returned from a function.  The values (there will need to be four of them) come from 4 separate SELECT statements inside the Function.  For example SELECT one INTO variable1 from table1 where ...    then SELECT two INTO variable2 from table1 where...   At first