Merge and update is almost same but they differ with certian scenarios: With MERGE, you’re able to combine update, delete, and insert command into one statement. This is because the MERGE statement uses a WHEN clause to determine the course of action to take on the match. With a MERGE, you can take different actions based on the rows matching or not matching the target or source. With the updated, you’re only updating rows that match. with merge you can merge two or more datafiles together and there are variations with merge too, left-merge, right-merge... etc I hope this helps!!!
... View more