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 Auditing Different From Change Data Capture in SQL Server?

What is Utility Control Point (UCP) in SQL Server ?

Finding Server Default Language in MS SQL

What is Resource Governor in SQL Server ?

Listing Metadata of MS SQL Server Internal Tables