About 390,000 results
Open links in new tab
  1. MERGE (Transact-SQL) - SQL Server | Microsoft Learn

    Sep 8, 2025 · The MERGE statement runs insert, update, or delete operations on a target table from the results of a join with a source table. For example, synchronize two tables by inserting, …

  2. SQL MERGE Statement - GeeksforGeeks

    May 9, 2024 · The MERGE statement compares data between a source table and a target table based on specified key fields. It performs appropriate actions like inserting new records, …

  3. Understanding the SQL MERGE statement

    Jul 27, 2020 · In this article, I am going to give a detailed explanation of how to use the SQL MERGE statement in SQL Server. The MERGE statement in SQL is a very popular clause that …

  4. SQL MERGESQL Tutorial

    The SQL MERGE statement stands out as a versatile tool for consolidating data from multiple sources and maintaining data integrity. It serves as a powerful alternative to the more …

  5. SQL Server MERGE to insert, update and delete at the same time

    May 27, 2025 · This looks at an example to help you better understand how the SQL Server MERGE statement works and how to use for your coding.

  6. SQL Server MERGE: The Essential Guide to MERGE Statement

    This tutorial shows you how to use the SQL Server MERGE statement to update data in a table based on values matched from another table.

  7. T-SQL MERGE in SQL Server database

    This article describes how to use the T-SQL MERGE statement in SQL Server database. The T-SQL MERGE statement is part of DML (Data Manipulation Language) and uses for insert, …

  8. SQL Merge Statement - Tutorial Gateway

    Microsoft introduced the MERGE statement in SQL Server 2008 to perform INSERT, DELETE, and UPDATE in a single statement. It is one of the most powerful statements to synchronize …

  9. SQL MERGE Statement - SQL Server, Oracle - TutorialsTeacher.com

    The MERGE statement selects the rows from one or more tables (called Source table), and based on conditions specified, INSERT or UPDATE data to another table (called Target table). To …

  10. PostgreSQL: Documentation: 18: MERGE

    Sep 25, 2025 · MERGE performs actions that modify rows in the target table identified as target_table_name, using the data_source. MERGE provides a single SQL statement that can …