dinamic sql - Mailing list pgsql-sql

From Manso Gomez, Ramon
Subject dinamic sql
Date
Msg-id 12B09E52EF3AEF41AEF3D205BD4DF4651FAE8D@MADARRMAIL3.indra.es
Whole thread Raw
Responses Re: dinamic sql  ("Jaime Casanova" <systemguards@gmail.com>)
List pgsql-sql
Hi

I need to write a Postgres function which executes a cursor. Query of this cursor however is created on the basis of parameters passed by user.


if(user_Input = 'a')
l_query := l_query||a_from_clause ||'where ename in '||user_Input
else
if(user_Input = 'b')
l_query := l_query||b_from_clause||'where ename in '||user_Input

OPEN csr FOR l_query;


How do we do it is postgres. My problem I know how to pass parameters like "ename=parameter", but If the SQL sentence is  ename in (parameters). It does not work.

Thanx in Advance.

pgsql-sql by date:

Previous
From: Richard Broersma Jr
Date:
Subject: Re: Fastest way to get max tstamp
Next
From: Michael Fuhr
Date:
Subject: Re: Trigger on Insert to Update only newly inserted fields?