Thread: create new table

create new table

From
Tamas Kohegyi
Date:
Hi all,

I have to create a table in a function, but i know the name of the new
table inside the fuction only.
How can I do this? (PL/PgSQL)

e.g.:
---------------------------
DECLARE a text;
...
BEGIN
a := 'newdb';
...
CREATE TABLE a (...);
...
------------------------------

-> parse error at or near "$1"
So it does not work...

Any idea?

Thanks,
Tamas