vote up 1 vote down star

Using PL/pgSQL or (some other mechanism), is it possible to create a table with a variable name?

I would like to create multiple tables named table_1, table_2, table_3, etc... and it would be simpler if I could use a loop to create them, instead of explicitly creating each one.

I suspect the answer to this is no, but I would like to confirm it.

flag

2 Answers

vote up 2 vote down check

While I would question your design if you're relying on such tricks, your question is general and you didn't give specific information to judge either way.

It should be possible, actually. It's only a matter of programmatically building the table names as strings and then, in a loop, execute your CREATE statements as dynamic queries.

See this page in the postgres documentation: http://www.postgresql.org/docs/8.3/interactive/plpgsql-statements.html#PLPGSQL-STATEMENTS-EXECUTING-DYN

link|flag
Thanks for the link. I need to create multiple tables because I need will be using table partitions on an existing table. – Jin Kim Jun 2 at 19:05
Looks like dynamic queries is what I need. Thanks! – Jin Kim Jun 2 at 19:12
vote up 0 vote down

generate a script by building the commands dynamically in a loop and then run the resulting output script

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.