我正在處理數據庫項目。當我嘗試更新包含空外鍵的行時,它會給我Cannot add or update a child row: a foreign key constraint fails ("archaelogy"."artifact", CONSTRAINT "location" FOREIGN KEY ("location_id") REFERENCES "location" ("location_id") ON DELETE NO ACTION ON UPDATE SET NULL
錯誤。我可以添加一個包含空外鍵但不能更新的行。(SQL)更新包含的空行外鍵錯誤
這是我的PHP代碼:
function editArtifact($editData){
$query = "UPDATE artifact SET worker_id=?, image=?, period=?,location_id=?, coordinate_x=?, coordinate_y=?, type=?, comment=?) WHERE artifact_id=?";
$stmt = $this->con->prepare($query);
$stmt->bind_param("ibsiddsss", $editData['worker_id'],$editData['image'],$editData['period'],$editData['location_id'],$editData['coordinate_x'],$editData['coordinate_y'],$editData['type'],$editData['comment'],$editData['artifact_id']);
if ($stmt->execute()) {
echo json_encode(array("editStatus"=>array('success'=>true)));
}else{
echo json_encode(array("editStatus"=>array('success'=>false)));
}
$stmt->close();
}
,這是我的帖子:
artifact_id=qw & worker_id=1 & image=null & period=null & location_id=null & coordinate_x=null & coordinate_y=null & type=null & comment=null
數據庫設計:
我不明白,我可以插入一個空列,但無法更新它。
'location'表是您的主表。正確?如果在更新時,位置表'location_id'和工件'location_id'應該是相同的類型。 –
@elumalai_kp位置表的location_id作爲主鍵,工件表的location_id也與位置表引用的外鍵一樣。 location_ids的類型是int [11]。 –
您可以顯示位置和工件表的表格結構嗎? –