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

Using MS SQL WHERE

Using CASE WHEN in MS SQL

What is TABLESAMPLE in SQL Server ?

What is the Use of DBCC Commands in SQL Server ?

Getting List of All Stored Procedures in Database in MS SQL