I am trying to add a foreign key constraint which references the same table.
IF NOT EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_Documents_Parent]') AND parent_object_id = OBJECT_ID(N'[dbo].[Documents]'))
BEGIN
ALTER TABLE [dbo].[Documents] WITH CHECK ADD CONSTRAINT [FK_Documents_Parent] FOREIGN KEY(LinkedDocumentId)
REFERENCES [dbo].[Documents] ([Id])
END
The relationship FK_Documents_Parent
does not exist.
However, it throws the error:
The ALTER TABLE statement conflicted with the FOREIGN KEY SAME TABLE constraint "FK_Documents_Parent". The conflict occurred in database "dev", table "dbo.Documents", column 'Id'.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…