I have table TABLE1, with columns COL1,COL2,COL3,COL4,COL5
If I have COL1 values as val1, I want to insert into this table, all the matching rows where COL1 = val1, such that COL1 = val2
i.e.
If started with 5 rows where COL1 = val1, after the MERGE, I get 5 more rows where COL1 = val2 and all other column values are copied as is.
So:
1) If no COL1 = val2 rows, then INSERT happens 2) If COL1 = val2 rows are present, nothing happens.
I have been trying the below. It works in 1), but for 2) but rexecuting the statement fails to insert due to uniqueness constarint based on Indexing on col1,col2,col4. (rundate is another value)
MERGE INTO TABLE1 t1
USING (
SELECT COL1,COL2COL3,COL4,COL5
FROM TABLE1
WHERE COL1 = val2
AND COL4 <= rundate
AND ( COL5 IS NULL
OR COL5 >= rundate)
) t2
ON (t1.COL1 = t2.COL1)
WHEN NOT MATCHED THEN
INSERT (t1.COL1,t1.COL2,t1.COL3,t1.COL4,t1.COL5)
VALUES (val2,t2.COL2,t2.COL3,t2.COL4,t2.COL5)
;