Hi, I would like to ask, for a MERGE statement, what is the default action that oracle would do if NOT MATCHED encountered ? For instance, I only specified MATCHED action and without NOT MATCHED action.
MERGE INTO POTENTIAL_PORT_SIG_TYPE b
USING
(
..................................
..................................
..................................
)ON (xxx =xxx)
WHEN MATCHED THEN
UPDATE STATEMENT;