plpgsql question - Mailing list pgsql-general

From Matthew Peter
Subject plpgsql question
Date
Msg-id 20060104235109.1076.qmail@web35201.mail.mud.yahoo.com
Whole thread Raw
Responses Re: plpgsql question  (Pandurangan R S <pandurangan.r.s@gmail.com>)
List pgsql-general
I'm trying to do a simple SELECT * in plpgsql that returns a set of records as a row w/ columns, not a row into a variable, w/ some conditionals.

The function below is semi-pseudo with what I'm trying to... If anyone could give me an example that works by returning it as a resultset maintaining the columns, that would be awesome and I could take it from there.

I've read the pl/pgsql section of the docs and the Douglas book but I'm still confused on this issue...

Thanks

create or replace function getrecord(int,text) RETURNS SETOF records as $$
DECLARE
-- event := rows to return from the table below

BEGIN
event := SELECT * FROM my_tbl
WHERE 1 = 1
and my_tbl_id IN (0$1) ||
' IF $2 IS NOT NULL THEN' || and username = $2 || 'END IF;'
; -- end sql statement

RETURN event;

END;
$$ LANGUAGE plpgsql;


 


Yahoo! DSL Something to write home about. Just $16.99/mo. or less

pgsql-general by date:

Previous
From: Sven Willenberger
Date:
Subject: Re: insert serial numbers
Next
From: "Eric Busto"
Date:
Subject: unsubscribe