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:
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?