解决方法
当行数不是太大时,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语句是为了避免递归;如果你确定没有,你可以离开它.