根据多个值更新多行

时间:2011-08-17 21:59:55

标签: tsql sql-update multiple-records

让我说我有这个:

Declare @passRefID as int
Declare @passTextA as varchar
Deckare @oassTextB as varchar
Declare @passPropertyA as int
Declare @passPropertyB as int


Set @oassTextA = 'Joe'
Set @passTextB = 'Smith'
Set @passPropertyA = 21
Set @passPropertyB = 23

TSQL A:

Set @passRefID = Select Ref_ID from TableA where ID = 10

Ref_ID返回值50

现在我想在另一个返回任意行数的select语句中使用该值。 看起来像这样

TSQL B:

Select UserID from TableB where FK_RefID = @passRefID

让我们说它返回:

UserID
34
56
87

现在,我想根据之前返回的TableCUserID创建更新。

我的 TableC 记录布局如下所示:

ID,   UserID, PropertyDefinitionID, PropertyValue
265,  34,     21,                    Bob
266,  34,     23,                    Barker
271,  34,     55,                    bb@abc.com
628,  56,     21,                    Jane
629,  56,     23,                    Adams
635,  56,     55,                    ja@abc.com
901,  83,     21,                    Tom
905,  83,     23,                    Thumb
910,  83,     55,                    tt@abc.com

我知道我可以使用:

Update TableC Set PropertyValue = @oassTextA Where UserID = 34 and PropertyDefinitionID = @passPropertyA
Update TableC Set PropertyValue = @oassTextB Where UserID = 34 and PropertyDefinitionID = @passPropertyB
Update TableC Set PropertyValue = @oassTextA Where UserID = 56 and PropertyDefinitionID = @passPropertyA
Update TableC Set PropertyValue = @oassTextB Where UserID = 56 and PropertyDefinitionID = @passPropertyB
Update TableC Set PropertyValue = @oassTextA Where UserID = 83 and PropertyDefinitionID = @passPropertyA
Update TableC Set PropertyValue = @oassTextB Where UserID = 83 and PropertyDefinitionID = @passPropertyB

但我的问题是,在 TSQL B 中,返回的行可能会有所不同。返回可能有1行或100行, TableC 的构造与常规有点不同。

如何根据使用唯一USERID返回的行数以及TableC使用PropertyDefinitionID的方式创建动态UPDATE语句?

感谢您的协助。

1 个答案:

答案 0 :(得分:1)

UPDATE  TableC
SET     PropertyValue = CASE WHEN PropertyDefinitionID = @passPropertyA
                             THEN @oassTextA
                             ELSE @oassTextB
                        END
WHERE   PropertyDefinitionID IN ( @passPropertyA, @passPropertyB )
        AND UserID IN (
        SELECT  B.UserID
        FROM    TableB AS B
                INNER JOIN TableA AS A ON A.Ref_ID = B.FK_RefID
        WHERE   A.Id = 10 )