I have insert statement contains multiple rows of values, like:
INSERT INTO table1 VALUES ('xxx','xxxx'), ('xx','xxxx'), ... ;
I wonder if there is any features like MySQL INSERT IGNORE
in Oracle, which silently ignores the rows with duplicated primary key values.
I know there is MERGE
, but I don't want the data source to be selected from other tables. My data source is in the literals after VALUES
.