PostgreSQL – How to use “upsert”?

If data exists, do nothing (don’t INSERT)

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
INSERT INTO customers ("name", "email")
VALUES('Microsoft','hotline@microsoft.com')
ON CONFLICT ("name") DO NOTHING;
INSERT INTO customers ("name", "email") VALUES('Microsoft','hotline@microsoft.com') ON CONFLICT ("name") DO NOTHING;
INSERT INTO customers ("name", "email")
      VALUES('Microsoft','hotline@microsoft.com') 
      ON CONFLICT ("name") DO NOTHING;

If name column has same data, do nothing

If data exists, UPDATE row

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
INSERT INTO customers ("name", "email")
VALUES('Microsoft','hotline@microsoft.com')
ON CONFLICT ("name")
DO
UPDATE SET "email" = EXCLUDED.email || ';' || customers.email;
INSERT INTO customers ("name", "email") VALUES('Microsoft','hotline@microsoft.com') ON CONFLICT ("name") DO UPDATE SET "email" = EXCLUDED.email || ';' || customers.email;
INSERT INTO customers ("name", "email")
    VALUES('Microsoft','hotline@microsoft.com') 
    ON CONFLICT ("name") 
        DO 
        UPDATE SET "email" = EXCLUDED.email || ';' || customers.email;

Before

After

Be the first to comment

Leave a Reply

Your email address will not be published.


*