W programie SQL Server:użyj zapytania rekurencyjnego. Biorąc pod uwagę CREATE TABLE tmp(Id int, Parent int), użyj
WITH x(Id) AS (
SELECT @Id
UNION ALL
SELECT tmp.Id
FROM tmp
JOIN x ON tmp.Parent = x.Id
)
DELETE tmp
FROM x
JOIN tmp ON tmp.Id = x.Id