Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
@ErwinBrandstetter: This might be reviving a very old thread with no purpose, but the link you provided points to this same page. – Juan Carlos Coto Oct 17 '12 at 17:52
@JuanCarlosCoto: I probably posted under the wrong question. Deleted the comment. – Erwin Brandstetter Oct 18 '12 at 2:35

3 Answers

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:

CREATE OR REPLACE FUNCTION create_mytable ()
  RETURNS void AS
$_$
BEGIN

IF EXISTS (
    SELECT *
    FROM   pg_catalog.pg_tables 
    WHERE  schemaname = 'myschema'
    AND    tablename  = 'mytable'
    ) THEN
   RAISE NOTICE 'Table "myschema"."mytable" already exists.';
ELSE
   CREATE TABLE myschema.mytable (i integer);
END IF;

END;
$_$ LANGUAGE plpgsql;

Call:

SELECT create_mytable();        -- call as many times as you want. 

If the user does not have the necessary privileges to create the table you might want to use SECURITY DEFINER. This version is safe enough.

share|improve this answer
I'm being forced to use an existing postgres 8.4 database. This hack does the trick, thank you! – Boundless May 29 '12 at 20:24
@Boundless: I saw that your edit was rejected as "too minor". I applied it, because it won't hurt. However, you should execute the CREATE FUNCTION only once. It's SELECT create_mytable(); that you may want to call many times. – Erwin Brandstetter May 30 '12 at 3:03
Brandstetter: I agree with you. The problem that I ran into was that I didn't know if the function was created or not (just like the table may or may not exist). So I want to make sure the function is created before I call it. – Boundless May 30 '12 at 13:57

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

share|improve this answer

There is no CREATE TABLE IF NOT EXISTS... but you can write a simple procedure for that, something like:

CREATE OR REPLACE FUNCTION execute(TEXT) RETURNS VOID AS $$
BEGIN
  EXECUTE $1;
END; $$ LANGUAGE plpgsql;


SELECT 
  execute($$
      CREATE TABLE sch.foo 
      (
        i integer
      )
  $$) 
WHERE 
  NOT exists 
  (
    SELECT * 
    FROM information_schema.tables 
    WHERE table_name = 'foo'
      AND table_schema = 'sch'
  );

That's a little bit weird, but can simply be

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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