10

我有一个具有自引用关系的表,

ID  parentID UserId Title 
 1    null     100   A
 2     1       100   B
 3     2       100   C 
 4     2       100   D
 5     null    100   E
 6     5       100   F

我想将 ID=1 及其子项的所有记录的 UserId 从 100 更新为 101,所以我想要

ID  parentID UserId Title 
 1    null     101   A
 2     1       101   B
 3     2       101   C 
 4     2       101   D
 5     null    100   E
 6     5       100   F

我怎样才能在 T-SQL 中做到这一点?

4

1 回答 1

24

您可能希望使用common table expression允许您生成递归查询的 a 。

例如:

;with cte as 
(
    select * from yourtable where id=1
    union all
    select t.* from cte 
        inner join yourtable t on cte.id = t.parentid
)
    update yourtable
    set userid = 101
    where id in (select id from cte)    
于 2013-10-08T20:37:13.673 回答