私のクエリは以下のとおりです。
insert into Orders
values
('20012', /*order num, pk*/
'6-10-2012', /*date, i wrote it in a different format, is that okay ?*/
'1000000012'/*customer id, fk*/
)
エラー:
The INSERT statement conflicted with the FOREIGN KEY constraint
"FK_Orders_Customers".
The conflict occurred in database "MyDB", table "dbo.Customers", column 'cust_id'.
The statement has been terminated.
なぜこのエラーが発生するのですか? このテーブルにダミーの値を挿入するにはどうすればよいですか?