sql >> Base de Datos >  >> RDS >> Sqlserver

SQL:ELIMINAR datos de la tabla autorreferencial en un orden específico

Prueba

ALTER TABLE [group] NOCHECK CONSTRAINT ALL
go
DELETE FROM [group] WHERE [groupId] <> '00000000-0000-0000-0000-000000000000'
go
ALTER TABLE [group] CHECK CONSTRAINT ALL
go

Si la mesa es grande, esta podría ser una buena opción.

select * into #temptable from [group] WHERE [groupId] = '00000000-0000-0000-0000-000000000000'
go
truncate table [group]
go
select * into [group] from #temptable
go
drop table #temptable
go