SQL Server,如何从用户定义的表类型中删除更新元素?

SQL Server, How to remove updates elements from User-Defined Table Type?(SQL Server,如何从用户定义的表类型中删除更新元素?)
本文介绍了SQL Server,如何从用户定义的表类型中删除更新元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个用户定义的表类型,比如说 @TT dbo.IntType readonly,IntType 是一批 int,作为 Primary-Key

I have a User-Defined Table Type, lets say @TT dbo.IntType readonly, IntType is batch of int, as Primary-Key

CREATE TYPE [dbo].[IntType] AS TABLE(
    [T] [int] NOT NULL,
    PRIMARY KEY CLUSTERED 

我喜欢根据 IntType 中的所有键 (int) 和 INSERT 新行来做 UPDATE对于数据库中不存在的键(int)(更新插入)

I like to do UPDATE based on all key(int) in IntType, and INSERT new rows for the key(int) not exist in the database (an upsert)

我想知道是否有一种简单的方法可以删除UPDATED"键(int)?然后我可以插入其余的.(或者如果您有 SQL Server 2010 的超级单行更新插入!!!)

I wonder if theres a easy way to remove the "UPDATED" key(int)? Then I can insert the rest. (or if you have a super one-line upsert for SQL Server 2010!!!)

推荐答案

使用 MERGE 语句.

http://technet.microsoft.com/en-us/library/bb510625.aspx

让我看看我能不能把一些东西放在一起.

Let me see if I can put something together.

示例

MERGE INTO [TargetTable] AS T
USING (SELECT l.T AS 'id' FROM @list l ) AS S
ON (T.[id] = S.[id])
WHEN MATCHED THEN
    UPDATE SET
        T.updated = 1
WHEN NOT MATCHED THEN
    INSERT VALUES ([insert value into each column of target table]);

编辑 2:参数 @list 是传入的列表,您填充了 ids

EDIT 2: The parameter @list is the list that is passed in that you populated with the ids

这篇关于SQL Server,如何从用户定义的表类型中删除更新元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Query with t(n) and multiple cross joins(使用 t(n) 和多个交叉连接进行查询)
Unpacking a binary string with TSQL(使用 TSQL 解包二进制字符串)
Max rows in SQL table where PK is INT 32 when seed starts at max negative value?(当种子以最大负值开始时,SQL 表中的最大行数其中 PK 为 INT 32?)
Inner Join and Group By in SQL with out an aggregate function.(SQL 中的内部连接和分组依据,没有聚合函数.)
Add a default constraint to an existing field with values(向具有值的现有字段添加默认约束)
SQL remove from running total(SQL 从运行总数中删除)