Re: Re[GENERAL] turn Query with simple function

2008-02-23 Thread Rodrigo E. De León Plicet
On 2/23/08, dvanatta <[EMAIL PROTECTED]> wrote: > How should this function be written? Define output parameters in the function and return SETOF RECORD, e.g.: --- SQL --- CREATE OR REPLACE FUNCTION GET_FOO1(BAR INT, OUT BAZ INT, OUT ZAB INT) RETURNS SETOF RECORD AS $BODY$ SELECT $1, $1; $BODY$ LA

Re[GENERAL] turn Query with simple function

2008-02-23 Thread dvanatta
I'm new to PostgreSQL, moving over from SQL Server and stored procs to PostgreSQL 8.3 and it's functions and having some difficulty. With SQL Server I didn't have to define types and return those types from stored procs which was convenient. I came across Return Query but can't find much info on