In a MySQL script you can write:
CREATE TABLE IF NOT EXISTS foo ...;
... other stuff ...
and then you can run the script many times without re-creating the table.
How do you do this in PostgreSQL?
|
In a MySQL script you can write:
... other stuff ... and then you can run the script many times without re-creating the table. How do you do this in PostgreSQL? |
|||||
|
|
This feature has been implemented in Postgresql 9.1 For older versions, here is a hack similar to the one by Szymon Guz, but without the unnecessary weirdness:
Call:
If the user does not have the necessary privileges to create the table you might want to use |
|||||||
|
|
This question is old, but for the sake of people finding it via Google, as of Postgres 9.1, you can now use the 'IF NOT EXISTS' clause just like MySQL |
|||
|
|
|
There is no CREATE TABLE IF NOT EXISTS... but you can write a simple procedure for that, something like:
That's a little bit weird, but can simply be |
|||
|
|