这是使用临时表收集所有子项的替代方法:
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)deletefrom tablewhere id in (select id from #nodes)
它从带有@delete_id的行开始,然后从那里开始。where语句用于防止递归;如果您确定没有任何内容,则可以将其忽略。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)