可能重複:
I got error 「The DELETE statement conflicted with the REFERENCE constraint」刪除衝突與參考
我收到錯誤
The DELETE statement conflicted with the REFERENCE constraint fk
有沒有去自動刪除的行導致設置等引用衝突財產等。爲了避免首先刪除孩子,然後回去並刪除想要刪除的原始行?在delete cascade
你的表
可能重複:
I got error 「The DELETE statement conflicted with the REFERENCE constraint」刪除衝突與參考
我收到錯誤
The DELETE statement conflicted with the REFERENCE constraint fk
有沒有去自動刪除的行導致設置等引用衝突財產等。爲了避免首先刪除孩子,然後回去並刪除想要刪除的原始行?在delete cascade
你的表
當您創建表,指定DELETE CASCADE。
這個選項可以設置表也刪除引用行,如果是父母的刪除操作。
打開和引用行將自動太被刪除。
在刪除原始主鍵記錄之前,首先刪除鍵表的關鍵字,關係表。
你正在使用什麼數據庫? – 2012-03-10 23:24:26
您需要將外鍵的刪除選項設置爲CASCADE刪除 – user710502 2012-03-10 23:25:41
SQL-Server:http://msdn.microsoft.com/en-us/library/ms186973.aspx以及此處(使用SSMS):http:// www .mssqltips.com/sqlservertip/2365/SQL服務器,外鍵,更新和刪除規則/ – 2012-03-10 23:26:55