In this article, we will be discussing about, the MERGE Statement in SQL Server. The MERGE Statement is a T-SQL enhancement, which was originally shipped with SQL Server 2008.
What is the MERGE Statement in SQL Server?
So what actually is the MERGE Statement? When and how should it be used?
The MERGE Statement actually allows joining a source with a target table and then based on the results of the join, it performs insert, update, or delete operations on the target table.
A simplified syntax example of the MERGE Statement is the following:
MERGE [tableA] as target using [tableB] as source on target.id = source.id when matched then update set target.col1 = source.col1, target.col2 = source.col2 when not matched then insert values (source.id, source.col1, source.col2) when not matched by source then delete;
So let’s analyze the above syntax. I will use some steps for that.
Step 1: Declare your source and target tables.
Step 2: Declare a joining condition on the two tables (in our example is the target.id = source.id condition).
Step 3: Set the action for the when matched case. This case means that a record was found that exists in both tables. To this end, you should perform an update in order to synchronize the two records.
Step 4: Set the action for the when not matched case. This case means that a record was found in the source table which does not exist in the target table. To this end, you should perform an insert in order to copy the record from the source to the target.
Step 5: Set the action for the when not matched by source case. This case means that a record was found in the target table which does not exist in the source table. To this end, you can delete this record (if the purpose of this operation is the synchronization of the two tables).
Please note that the MERGE statement should always end with a semicolon (;).
Strengthen you SQL Server Development Skills – Enroll to our Online Course!
Check our online course titled “Essential SQL Server Development Tips for SQL Developers”
(special limited-time discount included in link).Via the course, you will sharpen your SQL Server database programming skills via a large set of tips on T-SQL and database development techniques. The course, among other, features over than 30 live demonstrations!
Featured Online Courses:
- Boost SQL Server Database Performance with In-Memory OLTP
- Essential SQL Server Administration Tips
- SQL Server Fundamentals – SQL Database for Beginners
- Essential SQL Server Development Tips for SQL Developers
- The Philosophy and Fundamentals of Computer Programming
- .NET Programming for Beginners – Windows Forms with C#
- Introduction to SQL Server Machine Learning Services
- Introduction to Azure SQL Database for Beginners
- SQL Server 2019: What’s New – New and Enhanced Features
- Entity Framework: Getting Started – Complete Beginners Guide
- How to Import and Export Data in SQL Server Databases
- Learn How to Install and Start Using SQL Server in 30 Mins
- A Guide on How to Start and Monetize a Successful Blog
Read Also:
- Essential SQL Server Development Tips for SQL Developers
- The TempDB System Database in SQL Server
- SQL Server Installation and Setup Best Practices
- The feature you are trying to use is on a network resource that is unavailable
- SQL Server 2016: TempDB Enhancements
- tempdb growth
- Introduction to SQL Server Machine Learning Services
- Essential SQL Server Administration Tips
- What are SQL Server Statistics and Where are they Stored?
- …more
Check our other related SQL Server Administration articles.
Subscribe to our newsletter and stay up to date!
Check out our latest software releases!
Check out our eBooks!
Rate this article:
Reference: SQLNetHub.com (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou, a distinguished Senior Database and Software Architect, brings over 20 years of expertise to the IT industry. A Certified Database, Cloud, and AI professional, he earned the Microsoft Data Platform MVP title for nine consecutive years (2009-2018). As the founder of SQLNetHub and GnoelixiAI Hub, Artemakis is dedicated to sharing his knowledge and democratizing education on various fields such as: Databases, Cloud, AI, and Software Development. His commitment to simplicity and knowledge sharing defines his impactful presence in the tech community.
Something I would also like to mention regarding the MERGE statement is that by adding in the statement the following code: OUTPUT $action, Inserted.*, Deleted.*; every time the MERGE statement is executed you will get information on which records were updated, inserted and deleted.
So based on this post's example the code can be modified as follows in order to include the OUTPUT clause:
—————————
MERGE [tableA] as target using [tableB] as source on target.id = source.id
when matched then update set target.col1 = source.col1, target.col2 = source.col2
when not matched then insert values (source.id, source.col1, source.col2)
when not matched by source then delete
OUTPUT $action, Inserted.*, Deleted.*;
—————————