Skip to content
Advertisement

Insert if not exists Oracle

I need to be able to run an Oracle query which goes to insert a number of rows, but it also checks to see if a primary key exists and if it does, then it skips that insert. Something like:

Is this at all possible with Oracle?

Bonus points if you can tell me how to do this in PostgreSQL or MySQL.

Advertisement

Answer

The statement is called MERGE. Look it up, I’m too lazy.

Beware, though, that MERGE is not atomic, which could cause the following effect (thanks, Marius):

SESS1:

SESS2: insert into t1 values(2, 2);

SESS1:

SESS2: commit;

SESS1: ORA-00001

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement