删除SQL表中的层次数据

前端之家收集整理的这篇文章主要介绍了删除SQL表中的层次数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个分层数据的表.
一列“ParentId”,其中包含父(parent)的Id(“ID” – 键列)

删除一行时,我想删除所有的子级(所有级别的嵌套).

怎么做?

谢谢

解决方法

当行数不是太大时,erikkallen的递归方法起作用.

以下是使用临时表收集所有子项的替代方法

create table #nodes (id int primary key)
insert into #nodes (id) values (@delete_id)
while @@rowcount > 0
    insert into #nodes 
    select distinct child.id 
    from table child
    inner join #nodes parent on child.parentid = parent.id
    where child.id not in (select id from #nodes)

delete
from table
where id in (select id from #nodes)

它从带有@delete_id的行开始,并从那里下降. where语句是为了避免递归;如果你确定没有,你可以离开它.

原文链接:https://www.f2er.com/mssql/82504.html

猜你在找的MsSQL相关文章