What is the Merge Statement in SQL Server ?

MERGE is a new feature that provides an efficient way to perform multiple DML operations in a single statement. In previous versions of SQL Server, we had to write separate statements to INSERT, UPDATE, or DELETE data based on certain conditions, but now, using MERGE statement, we can include the logic of such data modifications in one statement that even checks when the data is matched, then just update it, and when unmatched, insert it.

One of the most important advantages of the MERGE statement is all the data is read and processed only once.



You May Interest

How is Change Tracking is Different From Change Data Capture ?

What is a Control Flow Inside SSIS ?

Finding Session Id in MS SQL User's Current Process

What is Data Collector in SQL Server ?

What is an OUTPUT Clause Inside SQL Server ?