On Monday, March 07, 2011 6:32:44 am Durumdara wrote:
> Hi!
> 
> In other RDBMS I found a way to make dynamic statements.
> I can use variables, or concat the SQL segments, and execute it all.
> 
> :tablename = call CreateTempTable;
> 
> insert into :tablename ....
> drop table :tablename
> 
> or (FireBird like cursor handling):
> 
> sql = "select * from " || :tablename || " where..."
> for select :sql ....
> ...
> 
> Can I do same thing in PGSQL too?
> 
> Thanks:
>    dd

http://www.postgresql.org/docs/9.0/interactive/plpgsql-statements.html#PLPGSQL-
STATEMENTS-EXECUTING-DYN
-- 
Adrian Klaver
adrian.kla...@gmail.com

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to