2

我有两个 FKUserProfile_IdService_Id. 此表包含我需要更改的值的位字段。

我有两个临时表:

第一个表#temp2

EmailAddress,
UserProfile_Id

第二张表#temp

EmailAddress,
Service_Id

此语句不起作用:

UPDATE MailSubscription SET BitField=1
where UserProfile_id IN ( SELECT UserProfile_Id from #temp2 ) 
      and Service_id IN ( SELECT ServiceId from #temp)

我知道它为什么不起作用,但不知道如何修复它以使其正常工作。

我需要更改bitFieldMailSubscription(UserProfile_Id ,Service_Id)在加入#temp和#temp2的位置,但我不能在mssql中这样写。

4

6 回答 6

3
UPDATE M
SET M.BitField=1
from MailSubscription M
inner join #temp2 t2 on M.UserProfile_id=t2.UserProfile_Id
inner join #temp t on M.Service_id=t.ServiceId
and t.EmailAddress=t2.EmailAddress
于 2013-07-29T10:53:46.810 回答
2
UPDATE MailSubscription SET BitField=1
FROM #temp2
JOIN #temp on #temp2.EmailAddress=#temp.EmailAddress
WHERE MailSubscription.Service_id = #temp.ServiceId 
  AND MailSubscription.UserProfile_id =  #temp2.UserProfile_Id 
于 2013-07-29T10:56:33.443 回答
2

您可以使用过滤连接:

update  m
set     BitField = 1
from    MailSubscription m
join    #temp t1
on      t1.Service_id = m.Service_id
join    #temp2 t2
on      t2.UserProfile_Id= m.UserProfile_Id
        and t1.EmailAddress = t2.EmailAddress
于 2013-07-29T10:57:22.447 回答
0

EXISTS 运算符的另一个选项

UPDATE MailSubscription
SET BitField = 1
WHERE EXISTS (
              SELECT 1 
              FROM #temp2 t2 JOIN #temp t ON t2.EmailAddress = t.EmailAddress
              WHERE t2.UserProfile_Id = MailSubscription.UserProfile_Id
                AND t.Service_Id = MailSubscription.Service_Id
              )
于 2013-07-29T11:12:29.813 回答
0

我认为这应该可以帮助您找到答案。

Update 'Tablename'
SET Mailsubscription = 1
WHERE concat(UserProfile_Id ,".", Service_Id) IN ( 
                        SELECT concat(t.UserProfile_Id , "." , t2,Service_Id)
                        FROM #temp t INNER JOIN #temp2 t2 
                               ON t2.EmailAddress = t.EmailAddress)
于 2013-07-29T11:24:59.980 回答
0
update MailSubscription set
    BitField = 1
from MailSubscription as MS
where
    exists
    (
        select *
        from #temp2 as T2
            inner join #temp as T on T.EmailAddress = T2.EmailAddress
        where
            T2.UserProfile_Id = MS.UserProfile_Id and
            T.Service_Id = MS.Service_Id
    )
于 2013-07-29T11:25:28.363 回答