我有兩個表table1和table2。我在table1中有記錄。我想將記錄插入到table2中。但它會出現以下異常。SQL約束插入失敗
Msg 547, Level 16, State 0, Line 2
The INSERT statement conflicted with the FOREIGN KEY constraint "FK_Table2_<Column3>". The conflict occurred in database "<databaseName>", table "table1", column 'Id'.
表2上的約束是這樣的。
ALTER TABLE [dbo].[table2] ADD CONSTRAINT [DF__table2__name__0B91BA14] DEFAULT ((0)) FOR [column4]
顯示錶格架構和您試圖插入的數據 – Andrey