Skip to content

Commit c669692

Browse files
authored
Merge pull request #17661 from julieMSFT/20201022_mergepreview
added Preview note for Synapse
2 parents 2f2d54a + 58e8175 commit c669692

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

docs/t-sql/statements/merge-transact-sql.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ ms.author: XiaoyuL
3030

3131
[!INCLUDE [SQL Server SQL Database](../../includes/applies-to-version/sql-asdb-asa.md)]
3232

33-
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, updating, or deleting rows in one table based on differences found in the other table.
33+
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, updating, or deleting rows in one table based on differences found in the other table.
34+
35+
> [!NOTE]
36+
> MERGE is currently in preview for Azure Synapse Analytics.
3437
3538
**Performance Tip:** The conditional behavior described for the MERGE statement works best when the two tables have a complex mixture of matching characteristics. For example, inserting a row if it doesn't exist, or updating a row if it matches. When simply updating one table based on the rows of another table, improve the performance and scalability with basic INSERT, UPDATE, and DELETE statements. For example:
3639

0 commit comments

Comments
 (0)