微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SqlServer_MERGE命令;

说明:通过MERGE命令,可以将多个DML动作语句(INSERT、UPDATE、DELETE)组合成一个整体动作,从而提高性能(它们可共享许多相同的物理操作)和简化事务。
(1)、示例
USE AdventureWorks2008
GO
CREATE TABLE Sales.MonthlyRollup
{
	Year smallint NOT NULL,Month tinyint NOT NULL,ProductID int NOT NULL FOREIGN KEY REFERENCES Production.Product(ProductID),QtySold int NOT NULL,CONSTRAINT PKYearMonthProductID PRIMARY KEY (Year,Month,ProductID)
}
MERGE Sales.MonthlyRollup AS smr
USING
(
	SELECT soh.OrderDate,sod.ProductID,SUM(sod.OrderQty) AS QtySold
	FROM Sales.SalesOrderHeader soh
	JOIN Sales.SalesOrderDetail sod
	ON soh.SalesOrderID = sod.SalesOrderID
	WHERE soh.OrderDate >= '2003-08-01' AND soh.OrderDate < '2003-08-02'
	GROUP BY soh.OrderDate,sod.ProductID
) AS S
ON (s.ProductID = smr.ProductID)
WHEN MATCHED THEN
	UPDATE SET smr.QtySold = smr.QtySold + s.QtySold
WHEN NOT MATCHED THEN
	INSERT (Year,ProductID,QtySold)
	VALUES (DATEPART(YY,s.ORDERDATE),DATEPART(M,s.OrderDate),s.ProductID,s.QtySold);
切记,MERGE语句最后的分号是必须的;
(2)、语法
MERGE [TOP (<expression>) [PERCENT]]
	[INTO] <target table> [WITH (<hint>)] [[AS] <alias>]
USING <source query>
ON <condition for join with target>
[WHEN MATCHED [AND <clause search condition>]
	THEN <merge matched>]
[WHEN NOT MATCHED [BY TARGET] [AND <clause search condition>] 
	THEN <merge not matched>]
[WHEN NOT MATCHED BY SOURCE [AND <clause search condition>] 
	THEN <merge matched>]
[<output clause>]
[OPTION (<query hint> [,...n])];

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐